-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.prod.yml
38 lines (36 loc) · 1.02 KB
/
docker-compose.prod.yml
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
version: '3.7'
services:
gerocuidado-template-api-prod:
image: gerocuidadodev/gerocuidado-template-api:latest
container_name: gerocuidado-template-api-prod
environment:
- DB_HOST=gerocuidado-template-db
- DB_USERNAME=postgres
- DB_PASS=postgres
- DB_DATABASE=gerocuidado-template-db
- DB_PORT=500x
ports:
- '300x:300x'
depends_on:
- gerocuidado-template-db
networks:
- gerocuidado-template-net
gerocuidado-template-db:
build:
context: ./.docker/postgres
dockerfile: Dockerfile
command: postgres -c 'config_file=/etc/postgresql/postgresql.conf'
container_name: gerocuidado-template-db
volumes:
- './.docker/postgres/config/postgresql.conf:/etc/postgresql/postgresql.conf'
environment:
- POSTGRES_DB=gerocuidado-template-db
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
ports:
- '500x:500x'
networks:
- gerocuidado-template-net
networks:
gerocuidado-template-net:
driver: bridge