-
Notifications
You must be signed in to change notification settings - Fork 6
/
docker-compose.yml
52 lines (50 loc) · 1.18 KB
/
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
48
49
50
51
52
squidguard:
image: muenchhausen/docker-squidguard:1.0.0
environment:
- TZ=CEST
# I want to use WPAD
- WPAD_IP=192.168.10.11
- WPAD_NOPROXY_NET=192.168.0.0
- WPAD_NOPROXY_MASK=255.255.0.0
# here I want to use blacklists from shallalist, which are license restricted especially for commercial use
- UPDATE_BLACKLIST_URL=http://www.shallalist.de/Downloads/shallalist.tar.gz
# I have some config files I want to overwrite
# e.g. squidGuard.conf, wpad.dat and block.html:
- SQUID_CONFIG_SOURCE=/custom-config
#- SQUID_UID=1000 # workaround for folder mapping problem on MAC OS: UserID for user proxy
ports:
- "3128:3128"
- "80:80"
expose:
- 3128
- 80
volumes:
# please adapt this to your needs
- ./myconfig:/custom-config
- /var/log/squid3
elk:
build: ./elk
hostname: elk
environment:
- TZ=CEST
ports:
- "5601:5601"
- "9200:9200"
- "5000:5000"
- "5044:5044"
expose:
- 5601
- 9200
- 5000
- 5044
filebeat:
build: ./filebeat
environment:
- TZ=CEST
- LOGSTASH_HOST=elk
- LOGSTASH_PORT=5000
links:
- elk
- squidguard
volumes_from:
- squidguard