You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

27 lines
672 B

version: "3"
services:
postgresql:
restart: always
image: sameersbn/postgresql:latest
environment:
- PG_PASSWORD=${PG_PASSWORD:-password0321}
- DB_NAME=${PG_DB_NAME:-cdao_pjet,cdasiaonline}
volumes:
- ./docker/data/postgresql:/var/lib/postgresql
ports:
- ${PG_PORT:-5432}:5432
redis:
restart: always
image: tenshiamd/redis:5-alpine
command: redis-server
ports:
- ${REDIS_PORT:-6379}:6379
volumes:
- ./docker/data/redis:/var/lib/redis
solr:
restart: always
image: tenshiamd/solr:5-alpine
ports:
- ${SOLR_PORT:-8983}:8983
volumes:
- ./docker/data/solr:/var/lib/solr