-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
56 lines (51 loc) · 976 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
53
54
55
56
version: '3'
services:
alice:
image: awesome
build: ./docker
command: '/main.sh'
volumes:
- ./alice.sh:/main.sh:ro
networks:
net1:
ipv4_address: 172.18.0.2
cap_add:
- NET_ADMIN
bob:
image: awesome
build: ./docker
command: '/main.sh'
volumes:
- ./bob.sh:/main.sh:ro
networks:
net2:
ipv4_address: 172.19.0.2
cap_add:
- NET_ADMIN
mallory:
image: python:3
command: "./docker_start.sh"
volumes:
- "./src:/main"
- "./workspace:/opt/workspace"
working_dir: "/main"
networks:
net1:
ipv4_address: 172.18.0.5
net2:
ipv4_address: 172.19.0.5
sysctls:
- net.ipv4.ip_forward=0
cap_add:
- NET_ADMIN
networks:
net1:
ipam:
driver: default
config:
- subnet: 172.18.0.0/16
net2:
ipam:
driver: default
config:
- subnet: 172.19.0.0/16