forked from ramdock/pegascape-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
60 lines (60 loc) · 1.59 KB
/
docker-compose.yml
File metadata and controls
60 lines (60 loc) · 1.59 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
---
version: "3.8"
services:
pegascape:
image: bumblecito/pegascape:latest
ports:
- 80:80/tcp
- 53:53/udp
- 8100:8100/udp
environment:
IP_ADDR: 192.168.1.110
tty: true
restart: unless-stopped
networks:
lan:
ipv4_address: 192.168.1.110 # Change me for some ip inside your macvlan subnet!
dns:
image: alazif/exploit-host-dns
ports:
- 53:53/tcp
- 53:53/udp
environment:
REDIRECT_IPV4: 192.168.1.111 # Change me for ipv4_address
# REDIRECT_IPV6: # Set me if wanted and uncomment line
restart: unless-stopped
networks:
lan:
ipv4_address: 192.168.1.111 # Change me for some ip inside your macvlan subnet!
http:
image: alazif/exploit-host-http
ports:
- 80:80/tcp
- 443:443/tcp
environment:
REDIRECT_TYPE: https # http or https
ROOT_DOMAIN: github.com
ROOT_DOMAIN_PATH: /Al-Azif/
# HIJACK_URL: www.google.com
restart: unless-stopped
networks:
lan:
ipv4_address: 192.168.1.112 # Change me for some ip inside your macvlan subnet!
watchtower:
image: containrrr/watchtower
volumes:
- /var/run/docker.sock:/var/run/docker.sock
command: --cleanup --interval 300
restart: unless-stopped
networks:
lan:
ipv4_address: 192.168.1.113 # Change me for some ip inside your macvlan subnet!
networks:
lan:
driver: macvlan
driver_opts:
parent: eth0 # Change me if necessary!
ipam:
config:
- subnet: "192.168.1.0/24"
gateway: "192.168.1.1" # Change me for your router lan ip!