remove unused services

This commit is contained in:
2025-01-11 01:09:53 -06:00
parent 5177f8270d
commit 0ddcaf221b
4 changed files with 0 additions and 95 deletions

View File

@@ -1,5 +0,0 @@
TZ=US/Central
WEBPASSWORD=""
RATE_LIMIT=0/0
FTLCONF_MAXDBDAYS=14
WEB_PORT=8080

View File

@@ -1,6 +0,0 @@
PIHOLE_HOSTNAME=pihole
PIHOLE_API_TOKEN=""
PIHOLE_PROTOCOL=http
PIHOLE_PORT=8080
INTERVAL=90s
PORT=9617

View File

@@ -1,70 +0,0 @@
services:
pihole:
container_name: pihole
dns:
- 127.0.0.1
- 1.1.1.1
env_file:
- .env
image: docker.io/pihole/pihole:latest
labels:
traefik.docker.network: traefik
traefik.enable: true
traefik.http.routers.pihole.entrypoints: websecure
traefik.http.routers.pihole.rule: Host(`pihole.lebens-home.net`)
traefik.http.routers.pihole.service: pihole
traefik.http.services.pihole.loadbalancer.server.port: 8080
networks:
traefik:
ipv4_address: 172.19.0.3
ports:
- 53:53/tcp
- 53:53/udp
- 8080:8080
privileged: true
restart: always
volumes:
- config:/etc/pihole
- dnsmasq:/etc/dnsmasq.d
- logs:/var/log
pihole_exporter:
container_name: pihole-exporter
depends_on:
- pihole
dns:
- 127.0.0.1
- 1.1.1.1
env_file:
- .exporter.env
image: docker.io/ekofr/pihole-exporter:latest
networks:
traefik: null
restart: always
networks:
traefik:
name: traefik
external: true
volumes:
config:
driver: local
driver_opts:
type: none
o: bind
device: /mnt/data/containers/pihole/config
dnsmasq:
driver: local
driver_opts:
type: none
o: bind
device: /mnt/data/containers/pihole/dnsmasq
logs:
driver: local
driver_opts:
type: none
o: bind
device: /mnt/data/containers/pihole/logs

View File

@@ -1,14 +0,0 @@
services:
portainer:
container_name: portainer-agent
dns:
- 172.19.0.3
- 1.1.1.1
image: docker.io/portainer/agent:latest
ports:
- 9001:9001
privileged: true
restart: always
volumes:
- /var/lib/docker/volumes:/var/lib/docker/volumes
- /var/run/docker.sock:/var/run/docker.sock