forked from nimbuscontrols/EIPScanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
47 lines (43 loc) · 952 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
version: '3'
services:
eip_scanner:
build: .
volumes:
- .:/code
command: examples/discovery_example
networks:
testing_net:
ipv4_address: 172.28.1.1
depends_on:
- opener_adapter
opener_adapter:
build: docker/opener
working_dir: /OpENer/bin/posix/src/ports/POSIX
command: ./OpENer eth0
ports:
- "44818:44818"
networks:
testing_net:
ipv4_address: 172.28.1.3
opener_adapter2:
build: docker/opener
working_dir: /OpENer/bin/posix/src/ports/POSIX
command: ./OpENer eth0
networks:
testing_net:
ipv4_address: 172.28.1.7
gdbserver:
build:
context: docker/gdbserver
security_opt: # options needed for gdb debugging
- seccomp:unconfined
- apparmor:unconfined
ports:
- "7776:22"
- "7777:7777"
networks:
testing_net:
ipam:
driver: default
config:
- subnet: 172.28.0.0/16