-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
51 lines (48 loc) · 1.02 KB
/
docker-compose.yml
File metadata and controls
51 lines (48 loc) · 1.02 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
services:
# Debugging
smtpdebug:
build:
context: .
dockerfile: ./docker/smtpdebug/Dockerfile
entrypoint: /start.sh
ports:
- "1025:1025"
environment:
- SMTP_PORT=1025
volumes:
- ./docker/smtpdebug/start.sh:/start.sh
mockics:
entrypoint: /start.sh
build:
context: .
dockerfile: ./docker/mock_ics/Dockerfile
ports:
- 5002:5002
volumes:
- ./docker/mock_ics/start.sh:/start.sh
debugiit:
build:
context: .
dockerfile: ./docker/damngoodtech/Dockerfile
ports:
- "5000:5000"
links:
- mockics
- smtpdebug
depends_on:
- mockics
- smtpdebug
# entrypoint: /entrypoint.sh
volumes:
- ./config/iit-debug.yml:/app/iit.yml
# No debugging
iit:
build:
context: .
dockerfile: ./docker/damngoodtech/Dockerfile
ports:
- "5000:5000"
entrypoint: /entrypoint.sh
volumes:
- ./config/iit.yml:/app/iit.yml
- ./docker/mock_ics/start.sh:/start.sh