Compare commits
2 Commits
bcd44ccf5c
...
4f58d25870
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4f58d25870 | ||
|
|
38ae25cde3 |
@ -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'
|
||||
|
||||
@ -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 |
|
||||
|
||||
14
traefik/docker-compose/traefik/docker-compose.yaml
Normal file
14
traefik/docker-compose/traefik/docker-compose.yaml
Normal 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
|
||||
Loading…
Reference in New Issue
Block a user