initial commit 5min quickstart

This commit is contained in:
Czechman 2024-09-19 23:02:30 +02:00
parent 172c4f1944
commit 76af49d9ad
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
version: '3'
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