-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathold.yml
More file actions
60 lines (59 loc) · 1.11 KB
/
old.yml
File metadata and controls
60 lines (59 loc) · 1.11 KB
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.9"
services:
redis:
image: redis:latest
ports:
- "6379:6379"
rabbitmq:
image: rabbitmq:3-management
networks:
- ciplatform
ports:
- "5672:5672"
- "5673:5673"
database:
image: postgres:latest
networks:
- ciplatform
ports:
- "5432:5432"
environment:
POSTGRES_DB: CIPlatform
POSTGRES_USER: root
POSTGRES_PASSWORD: root
webapi:
build:
context: .
dockerfile: src/CIPlatformWebAPI/Dockerfile
networks:
- ciplatform
ports:
- "5100:5100"
manager:
build:
context: .
dockerfile: src/CIPlatformManager/Dockerfile
networks:
- ciplatform
ports:
- "5200:5100"
worker:
build:
context: .
dockerfile: src/CIPlatformWorker/Dockerfile
networks:
- ciplatform
privileged: true
volumes:
- /var.run/docker.sock:/var/run/docker.sock
frontend:
build:
context: .
dockerfile: src/CIPlatformUI/Dockerfile
networks:
- ciplatform
ports:
- "4200:80"
networks:
ciplatform:
driver: bridge