Compare commits

...

2 Commits

Author SHA1 Message Date
Schneider Roland
4f58d25870 add: pihole 2024-10-03 21:07:24 +02:00
Schneider Roland
38ae25cde3 add: traefik 2024-10-03 20:57:44 +02:00
3 changed files with 19 additions and 1 deletions

View File

@ -8,7 +8,7 @@ services:
- "53:53/tcp"
- "53:53/udp"
# - "67:67/udp" # Only required if you are using Pi-hole as your DHCP server
- "80:80/tcp"
- "4114:80/tcp"
environment:
TZ: 'America/Chicago'
# WEBPASSWORD: 'set a secure password here or it will be random'

View File

@ -19,3 +19,7 @@ router redirects port range 4100-4200 to the infra server
| 4110 | nexus | docker registry |
| 4111 | vaultwarden | web |
| 4112 | jenkins | jenkins |
| 80 | traefik | traefic proxy |
| 4113 | traefik | traefik webui |
| 53 | pihole | pihole dns |
| 4114 | pihole | pihole web |

View File

@ -0,0 +1,14 @@
services:
reverse-proxy:
# The official v3 Traefik docker image
image: traefik:v3.1
# Enables the web UI and tells Traefik to listen to docker
command: --api.insecure=true --providers.docker
ports:
# The HTTP port
- "80:80"
# The Web UI (enabled by --api.insecure=true)
- "8080:8080"
volumes:
# So that Traefik can listen to the Docker events
- /var/run/docker.sock:/var/run/docker.sock