Olli
2 years ago
commit
1676604249
2 changed files with 41 additions and 0 deletions
@ -0,0 +1,15 @@ |
|||||
|
--- |
||||
|
version: "2.1" |
||||
|
services: |
||||
|
dokuwiki: |
||||
|
image: lscr.io/linuxserver/dokuwiki:latest |
||||
|
container_name: dokuwiki |
||||
|
environment: |
||||
|
- PUID=1000 |
||||
|
- PGID=1000 |
||||
|
- TZ=Europe/Berlin |
||||
|
volumes: |
||||
|
- /opt/dokuwiki:/config |
||||
|
ports: |
||||
|
- 8084:80 |
||||
|
restart: unless-stopped |
@ -0,0 +1,26 @@ |
|||||
|
version: "3" |
||||
|
|
||||
|
# More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/ |
||||
|
services: |
||||
|
pihole: |
||||
|
network_mode: host |
||||
|
container_name: pihole |
||||
|
image: pihole/pihole:latest |
||||
|
ports: |
||||
|
- "53:53/tcp" |
||||
|
- "53:53/udp" |
||||
|
- "67:67/udp" |
||||
|
- "80:80/tcp" |
||||
|
- "443:443/tcp" |
||||
|
environment: |
||||
|
TZ: 'Europe/Berlin' |
||||
|
WEBPASSWORD: 'SW_Ep.5:TESB' |
||||
|
# Volumes store your data between container upgrades |
||||
|
volumes: |
||||
|
- '/home/pi/etc-pihole/:/etc/pihole/' |
||||
|
- '/home/pi/etc-dnsmasq.d/:/etc/dnsmasq.d/' |
||||
|
# Recommended but not required (DHCP needs NET_ADMIN) |
||||
|
# https://github.com/pi-hole/docker-pi-hole#note-on-capabilities |
||||
|
cap_add: |
||||
|
- NET_ADMIN |
||||
|
restart: unless-stopped |
Loading…
Reference in new issue