-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
44 lines (40 loc) · 861 Bytes
/
docker-compose.yml
File metadata and controls
44 lines (40 loc) · 861 Bytes
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
version: "3.9"
services:
postgres:
container_name: postgres
image: postgres
environment:
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
networks:
- back
torProxy:
container_name: torProxy
image: "dperson/torproxy"
ports:
- 8118:8118
- 9050:9050
networks:
- back
api:
container_name: api
build: ./back-end
ports:
- 8080:8080
depends_on:
- "torProxy"
- "postgres"
networks:
- back
client:
container_name: client-container
restart: always
build: ./front-end
ports:
- 3000:3000
depends_on:
- api
networks:
- back
networks:
back:
driver: bridge