mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-29 03:33:28 +01:00
21 lines
382 B
YAML
21 lines
382 B
YAML
|
---
|
||
|
version: '3'
|
||
|
|
||
|
services:
|
||
|
|
||
|
pihole:
|
||
|
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: 'America/Chicago'
|
||
|
WEBPASSWORD: 'testtest'
|
||
|
volumes:
|
||
|
- etcd:/etc/pihole
|
||
|
- dnsmasq:/etc/dnsmasq.d
|
||
|
restart: unless-stopped
|