You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
538 B
27 lines
538 B
version: "3"
|
|
|
|
services:
|
|
traefik:
|
|
restart: unless-stopped
|
|
image: traefik
|
|
container_name: traefik
|
|
ports:
|
|
- "${REVERSEPROXY_HTTP_PORT:-80}:80"
|
|
- "${REVERSEPROXY_HTTPS_PORT:-443}:443"
|
|
volumes:
|
|
- "/var/run/docker.sock:/var/run/docker.sock"
|
|
- "./traefik.toml:/traefik.toml"
|
|
- "./acme.json:/acme.json:ro"
|
|
- "./servers.toml:/servers.toml"
|
|
- "./traefik_logs:/traefik_logs"
|
|
|
|
links:
|
|
- btcpayserver
|
|
|
|
volumes:
|
|
traefik_logs:
|
|
|
|
exclusive:
|
|
- proxy
|
|
required:
|
|
- "traefik"
|