1
0
mirror of https://github.com/pi-hole/docker-pi-hole.git synced 2024-06-30 21:20:59 +02:00
docker-pi-hole/doco-alpine.yml

15 lines
301 B
YAML
Raw Normal View History

version: "3"
services:
pihole:
image: diginc/pi-hole:alpine
environment:
# Your docker host IP is required if you run RUN (not build)
ServerIP: 192.168.1.55
ports:
- "53:53/tcp"
- "53:53/udp"
- "80:80/tcp"
cap_add:
- NET_ADMIN
2017-02-03 07:05:34 +01:00
restart: always