mirror of
https://github.com/Retropex/btcpayserver-docker.git
synced 2025-05-12 13:00:41 +02:00
28 lines
533 B
YAML
28 lines
533 B
YAML
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"
|