forked from fga-eps-mds/2024-1-GEROcuidado-APIUsuario
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.prod.yml
45 lines (43 loc) · 1.25 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
39
40
41
42
43
44
45
version: '3.7'
services:
gerocuidado-usuario-api-prod:
image: victorjorge/gerocuidado-usuario-api:latest
container_name: gerocuidado-usuario-api-prod
environment:
- DB_HOST=gerocuidado-usuario-db
- DB_USERNAME=postgres
- DB_PASS=postgres
- DB_DATABASE=gerocuidado-usuario-db
- DB_PORT=5001
- JWT_TOKEN_SECRET=f57d8cc37a35a8051aa97b5ec8506a2ac479e81f82aed9de975a0cb90b903044
- JWT_TOKEN_EXPIRES_IN=12h
- HASH_SALT=10
ports:
- '3001:3001'
depends_on:
- gerocuidado-usuario-db
networks:
- gerocuidado-usuario-net
- gerocuidado-apis-net
gerocuidado-usuario-db:
build:
context: ./.docker/postgres
dockerfile: Dockerfile
command: postgres -c 'config_file=/etc/postgresql/postgresql.conf'
container_name: gerocuidado-usuario-db
volumes:
- './.docker/postgres/config/postgresql.conf:/etc/postgresql/postgresql.conf'
environment:
- POSTGRES_DB=gerocuidado-usuario-db
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
ports:
- '5001:5001'
networks:
- gerocuidado-usuario-net
networks:
gerocuidado-usuario-net:
driver: bridge
gerocuidado-apis-net:
name: gerocuidado-apis-net
external: true