-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
48 lines (45 loc) · 1016 Bytes
/
docker-compose.yaml
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
services:
piholeV5:
container_name: piholeV5
image: pihole/pihole:latest
ports:
- "54:53/tcp"
- "54:53/udp"
- "8080:80/tcp"
- "1444:443/tcp"
environment:
TZ: 'Asia/Tokyo'
WEBPASSWORD: 'test123'
piholeV6:
container_name: piholeV6
image: pihole/pihole:development
ports:
- "55:53/tcp"
- "55:53/udp"
- "8081:80/tcp"
- "1445:443/tcp"
environment:
TZ: 'Asia/Tokyo'
FTLCONF_webserver_api_password: 'test123'
piholeV52:
container_name: piholeV52
image: pihole/pihole:latest
ports:
- "56:53/tcp"
- "56:53/udp"
- "8082:80/tcp"
- "1446:443/tcp"
environment:
TZ: 'Asia/Tokyo'
WEBPASSWORD: 'test456'
piholeV62:
container_name: piholeV62
image: pihole/pihole:development
ports:
- "57:53/tcp"
- "57:53/udp"
- "8083:80/tcp"
- "1447:443/tcp"
environment:
TZ: 'Asia/Tokyo'
FTLCONF_webserver_api_password: 'test456'