31 lines
716 B
YAML
Executable File
31 lines
716 B
YAML
Executable File
version: '3'
|
|
|
|
services:
|
|
reverse-proxy:
|
|
# The official v2 Traefik docker image
|
|
image: traefik:v2.10
|
|
# Enables the web UI and tells Traefik to listen to docker
|
|
command:
|
|
- "--api.insecure=true"
|
|
- "--providers.docker=true"
|
|
ports:
|
|
# The HTTP port
|
|
- "80:80"
|
|
# The HTTPS port
|
|
- "443:443"
|
|
# 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:ro
|
|
- ./conf/traefik.toml:/etc/traefik/traefik.toml:ro
|
|
- ./certs:/etc/certs:ro
|
|
networks:
|
|
- public
|
|
|
|
networks:
|
|
public:
|
|
external: true
|
|
name: ${NETWORK_NAME}
|
|
|