feature: Adds base Traefik stack
This commit is contained in:
parent
8a2f7309ec
commit
efe245787a
4 changed files with 76 additions and 0 deletions
12
hosts/andromeda/stacks/traefik/docker-compose.yml
Normal file
12
hosts/andromeda/stacks/traefik/docker-compose.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
version: '3'
|
||||
|
||||
services:
|
||||
reverse-proxy:
|
||||
# The official v3 Traefik docker image
|
||||
image: traefik:v3.3
|
||||
# Enables the web UI and tells Traefik to listen to docker
|
||||
command: --api.insecure=true --entryPoints.web.address=:8000 --providers.docker
|
||||
network_mode: host
|
||||
volumes:
|
||||
# So that Traefik can listen to the Docker events
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
Loading…
Add table
Add a link
Reference in a new issue