-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
60 lines (42 loc) · 881 Bytes
/
docker-compose.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
version: "3"
services:
backend:
build: ./backend
environment:
- SERVER_PORT=8080
- DATABASE_URL=postgresql://user:password@database:5432/santa
- JWT_SECRET=yourjwtsecret
depends_on:
- database
restart: unless-stopped
networks:
- santa-network
database:
image: postgres
environment:
- POSTGRES_USER=user
- POSTGRES_PASSWORD=password
- POSTGRES_DB=santa
volumes:
- db_data:/var/lib/postgresql/data
networks:
- santa-network
frontend:
build: ./frontend
networks:
- santa-network
nginx:
image: nginx:latest
ports: 80:80
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf
depends_on:
- backend
- frontend
networks:
- santa-network
networks:
santa-network:
driver: bridge
volumes:
db_data: