-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
64 lines (60 loc) · 1.1 KB
/
docker-compose.yml
File metadata and controls
64 lines (60 loc) · 1.1 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
61
62
63
64
version: '3'
services:
labs-iam:
image: aossama/labs-iam:latest
build:
context: .
args:
- service=iam
container_name: labs-iam
environment:
- ENV_SETTINGS=/srv/conf/dev.cfg
expose:
- "8000"
ports:
- "8001:8000"
labs-auth:
image: aossama/labs-auth:latest
build:
context: .
args:
- service=auth
container_name: labs-auth
environment:
- ENV_SETTINGS=/srv/conf/dev.cfg
expose:
- "8000"
ports:
- "8002:8000"
links:
- labs-iam
labs-labs:
image: aossama/labs-labs:latest
build:
context: .
args:
- service=labs
container_name: labs-labs
environment:
- ENV_SETTINGS=/srv/conf/dev.cfg
expose:
- "8000"
ports:
- "8003:8000"
labs-ui:
image: aossama/labs-ui:latest
build:
context: .
args:
- service=ui
container_name: labs-ui
environment:
- ENV_SETTINGS=/srv/conf/dev.cfg
expose:
- "80"
ports:
- "8000:80"
links:
- labs-iam
- labs-auth
- labs-labs