This repository has been archived by the owner on Sep 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
test-pi-hole.json
56 lines (56 loc) · 1.92 KB
/
test-pi-hole.json
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
{
"version": "2",
"templates": [
{
"categories": [
"Other"
],
"description": "A DNS sinkhole that protects your devices from unwanted content without installing any client-side software",
"image": "pihole/pihole:latest",
"logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/pihole.png",
"name": "pihole",
"note": "Browse to <a herf='http://{host-ip}/admin/'>http://{host-ip}/admin/</a> to access the web interface.<br>Check <a href='https://github.com/pi-hole/docker-pi-hole'>Docker Pi-hole quick start guide</a> for more details.<br>The default web password is <b>changeme</b>",
"platform": "linux",
"env": [
{
"default": "1000",
"label": "PUID",
"name": "PUID"
},
{
"default": "100",
"label": "PGID",
"name": "PGID"
},
{
"default": "Europe/London",
"label": "Time Zone",
"name": "TZ"
},
{
"default": "changeme",
"label": "Web password",
"name": "WEBPASSWORD"
}
],
"ports": [
"53:53/tcp",
"53:53/udp",
"80:80/tcp"
],
"restart_policy": "unless-stopped",
"title": "Pi-Hole",
"type": 1,
"volumes": [
{
"container": "/etc/pihole",
"bind": "/etc/pihole"
},
{
"container": "/etc/dnsmasq.d",
"bind": "/etc/dnsmasq.d"
}
]
}
]
}