forked from fin3ss3g0d/evilgophish
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
74 lines (68 loc) · 1.38 KB
/
docker-compose.yml
File metadata and controls
74 lines (68 loc) · 1.38 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
version: '3.4'
x-environment:
&default-environment
ROOT_DOMAIN: example.com
EVILGINX3_SUBS: "accounts myaccount"
E_ROOT_BOOL: false
REDIRECT_URL: https://redirect.com
FEED_BOOL: true
RID_REPLACEMENT: user_id
BL_BOOL: false
services:
apache:
build:
context: .
dockerfile: Dockerfile.apache
container_name: "evilgophish-apache"
ports:
- "443:443"
expose:
- "443"
environment:
<<: *default-environment
volumes:
- ./certs:/app/certs/
networks:
evilgophish-net:
ipv4_address: 172.20.0.2
evilginx3:
build:
context: .
dockerfile: Dockerfile.evilginx3
container_name: "evilgophish-evilginx3"
networks:
evilgophish-net:
ipv4_address: 172.20.0.3
expose:
- "8443"
environment:
<<: *default-environment
volumes:
- shared-data:/app/gophish/
gophish:
build:
context: .
dockerfile: Dockerfile.gophish
container_name: "evilgophish-gophish"
networks:
evilgophish-net:
ipv4_address: 172.20.0.4
ports:
- "3333:3333"
expose:
- "8080"
- "3333"
environment:
<<: *default-environment
volumes:
- shared-data:/app/gophish/
depends_on:
- apache
networks:
evilgophish-net:
driver: bridge
ipam:
config:
- subnet: 172.20.0.0/24
volumes:
shared-data: