-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
51 lines (45 loc) · 1013 Bytes
/
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
# vim: ts=2 sw=2 et
version: '3.6'
name: squid-proj
services:
squid-zscaler-noauth:
build: ./squid-zscaler
image: localhost/squid-zscaler
ports:
- "4128:3128"
squid-zscaler-auth:
# build: ./squid-zscaler
image: localhost/squid-zscaler
ports:
- "4129:3128"
environment:
- AUTH_USER=insights
- AUTH_PASSWORD=test123
- AUTH=1
squid-classic-noauth:
build: ./squid-classic
image: localhost/squid-classic
ports:
- "3129:3128"
squid-classic-auth:
image: localhost/squid-classic
ports:
- "3128:3128"
environment:
- AUTH_USER=insights
- AUTH_PASSWORD=test123
- AUTH=1
squid-icap-noauth:
image: localhost/squid-classic
ports:
- "5129:3128"
environment:
- ICAP=1
python-icap-server:
build: ./icap-server
image: localhost/python-icap-server
ports:
- "13440:13440"
tcpdump:
image: corfr/tcpdump
command: "-i any port 13440"