-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
52 lines (50 loc) · 886 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
version: "3.6"
services:
frontend:
build:
context: ./web
dockerfile: Dockerfile
ports:
- "8080:80"
depends_on:
- redis
- secret-assistant
- gateway
networks:
- frontend-network
gateway:
build:
context: ./gateway
dockerfile: Dockerfile
ports:
- "3000:3000"
expose:
- "3000"
networks:
- frontend-network
- backend-network
depends_on:
- redis
- secret-assistant
secret-assistant:
build:
context: ./secret_assistant
dockerfile: Dockerfile
ports:
- "50052:50052"
expose:
- "50052"
networks:
- backend-network
redis:
image: redis:7-bullseye
restart: always
ports:
- "6379:6379"
expose:
- "6379"
networks:
- backend-network
networks:
frontend-network:
backend-network: