forked from NHAS/reverse_ssh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.dev.yml
36 lines (32 loc) · 929 Bytes
/
docker-compose.dev.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
services:
container1:
image: archlinux
command: sleep infinity
volumes:
- ./bin/:/usr/local/bin
networks:
custom_network:
ipv4_address: 172.25.0.2
container2:
image: archlinux
ports:
- "3232:3232/tcp"
volumes:
- ./bin/:/usr/local/bin
command: sleep infinity
networks:
custom_network:
ipv4_address: 172.25.0.3
container3:
image: archlinux
command: sleep infinity
privileged: true
networks:
custom_network:
ipv4_address: 172.25.0.4
networks:
custom_network:
ipam:
config:
- subnet: 172.25.0.0/24
gateway: 172.25.0.1