-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker_compose.yml
More file actions
76 lines (68 loc) · 1.29 KB
/
docker_compose.yml
File metadata and controls
76 lines (68 loc) · 1.29 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
75
version: '3.8'
services:
dc:
image: winshuttle/activedirectory
container_name: dc
networks:
- net
ports:
- "389:389" # LDAP
- "636:636" # LDAPS
ids:
image: mkodockx/docker-snort
container_name: ids
networks:
- net
ports:
- "2525:2525"
log:
image: splunk/splunk:latest
container_name: log
environment:
- SPLUNK_START_ARGS=--accept-license
- SPLUNK_PASSWORD=changeme
networks:
- net
ports:
- "8000:8000"
- "8088:8088"
- "8090:8090"
web01:
image: httpd:latest
container_name: web01
networks:
- net
ports:
- "80:80"
- "443:443"
volumes:
- ./web01:/usr/local/apache2/htdocs/
web02:
image: fauria/vsftpd
container_name: web02
networks:
- net
ports:
- "20:20"
- "21:21"
- "21100-21110:21100-21110"
environment:
- FTP_USER=user
- FTP_PASS=pass
- PASV_ADDRESS=127.0.0.1
- PASV_MIN_PORT=21100
- PASV_MAX_PORT=21110
volumes:
- ./web02:/home/vsftpd
selectel:
image: httpd:latest
container_name: selectel
networks:
- net
ports:
- "8443:443"
volumes:
- ./selectel:/usr/local/apache2/htdocs/
networks:
net:
driver: bridge