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.
 
 

25 lines
576 B

version: "2"
services:
monsun_postgres:
image: postgres
container_name: monsun_postgres
restart: always
volumes:
- ./db-data:/var/lib/postgresql/data
env_file: dev.env
monsun_backend:
build: .
container_name: monsun_backd
restart: always
ports:
- 80:80
volumes:
- ./config:/var/config/
depends_on:
- monsun_postgres
environment:
POSTGRES_HOST: monsun_postgres
env_file: dev.env
command: ["bash", "./wait-for-it.sh", "monsun_postgres:5432", "-t", "60", "--", "./docker-entrypoint.sh"]