是否可以从CLI覆盖文件提供程序的后端URL?
例如:
docker rm -f traefik-cockpit; docker run -d -p 443:443 \
-v /var/run/docker.sock:/var/run/docker.sock \
--label 'traefik.enable=true' \
--label 'traefik.file.backend.url=127.0.0.1' \
--label 'traefik.docker.network=host' \
--label 'traefik.frontend.rule=Host:cockpit.myexample.com' \
--label 'traefik.port=9090' \
--label 'traefik.protocol=http' \
--name traefik-cockpit \
traefik:v1.6.6-alpine \
--file \
--defaultentrypoints="https" \
--entryPoints='Name:https Address::443 TLS' \
--docker.endpoint=unix:///var/run/docker.sock \
--docker.exposedbydefault=false \
--docker.watch=true
有许多直接在Host上运行的应用程序,这将通过CLI为File provider启用自动配置
可能的解决方案:
--label 'traefik.file.backend.url=127.0.0.1' \
--label 'traefik.docker.network=host' \
或
--label 'traefik.file.backend.url=192.168.0.5' \
谢谢