Remove unused containers

This commit is contained in:
Marko Korhonen 2020-04-13 13:24:37 +03:00
parent 54353c021e
commit 9bec3f2eb4
No known key found for this signature in database
GPG key ID: 911B85FBC6003FE5
2 changed files with 0 additions and 50 deletions

View file

@ -1,14 +0,0 @@
version: "3"
services:
organizr:
container_name: organizr
image: organizrtools/organizr-v2
environment:
- TZ=Europe/Helsinki
restart: always
ports:
- "3123:80"
volumes:
- /docker/organizr:/config
- /etc/localtime:/etc/localtime:ro

View file

@ -1,36 +0,0 @@
version: "3"
services:
pihole:
networks:
- proxy
container_name: pihole
image: pihole/pihole:latest
ports:
- "53:53/tcp"
- "53:53/udp"
- "67:67/udp"
- "8053:80/tcp"
environment:
TZ: "Europe/Helsinki"
volumes:
- /docker/pihole/pihole/:/etc/pihole/
- /docker/pihole/dnsmasq/:/etc/dnsmasq.d/
- /docker/pihole/log/:/var/log/
- /etc/localtime:/etc/localtime:ro
dns:
- 127.0.0.1
- 1.1.1.1
cap_add:
- NET_ADMIN
restart: always
labels:
- "traefik.enable=true"
- "traefik.frontend.rule=HostRegexp:pihole.reekynet.lan,{catchall:.*}"
- "traefik.frontend.priority=1"
- "traefik.backend=pihole"
- "traefik.port=80"
networks:
proxy:
external: true