api/docker-compose.yml (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
services: # app: # build: # context: . # dockerfile: Dockerfile # target: prod # restart: unless-stopped # ports: # - ${PORT}:${PORT} # environment: # APP_ENV: ${APP_ENV} # PORT: ${PORT} # DB_HOST: ${DB_HOST} # DB_PORT: ${DB_PORT} # DB_DATABASE: ${DB_DATABASE} # DB_USERNAME: ${DB_USERNAME} # DB_PASSWORD: ${DB_PASSWORD} # DB_SCHEMA: ${DB_SCHEMA} # depends_on: # psql: # condition: service_healthy # networks: # - blueprint psql: image: postgres:latest restart: unless-stopped environment: POSTGRES_DB: ${DB_DATABASE} POSTGRES_USER: ${DB_USERNAME} POSTGRES_PASSWORD: ${DB_PASSWORD} ports: - "${DB_PORT}:5432" volumes: - psql_volumepsql:/var/lib/postgresql/data healthcheck: test: ["CMD-SHELL", "sh -c 'pg_isready -U ${DB_USERNAME} -d ${DB_DATABASE}'"] interval: 5s timeout: 5s retries: 3 start_period: 15s # networks: # - blueprint volumes: psql_volumepsql: # networks: # blueprint: |