-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
49 lines (46 loc) · 890 Bytes
/
compose.yaml
File metadata and controls
49 lines (46 loc) · 890 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
45
46
47
48
49
services:
container-manager: &cm
environment:
- RUNNER_TARGET=dpasp
build:
context: backend
dockerfile: Dockerfile
profiles:
- dpasp
networks:
- cm
ports:
- 8001:80
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /usr/bin/docker:/usr/bin/docker
- /usr/lib/libdevmapper.so.1.02:/usr/lib/libdevmapper.so.1.02
container-manager-mock:
<<: *cm
profiles:
- mock
environment:
- RUNNER_TARGET=mock
networks:
cm:
aliases:
- container-manager
frontend:
build:
context: ./editor
dockerfile: Dockerfile
target: dev
networks:
- cm
- dpasp-instances
ports:
- 8000:80
volumes:
- ./editor:/app
env_file:
- ./editor/.env
networks:
cm:
driver: bridge
dpasp-instances:
driver: bridge