16 lines
344 B
YAML
16 lines
344 B
YAML
version: '3'
|
|
|
|
services:
|
|
reverse-proxy:
|
|
image: traefik:v3.1
|
|
command: --api.insecure=true --providers.docker
|
|
ports:
|
|
# The HTTP port
|
|
- "180:80"
|
|
# The HTTPS port
|
|
- "1443:443"
|
|
# The web UI (enabled by --api.insecure=true)
|
|
- "8080:8080"
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|