从CLI覆盖后端URL以代理到主机

时间:2018-11-03 07:42:29

标签: traefik

是否可以从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' \

谢谢

1 个答案:

答案 0 :(得分:0)

这不可能:

  • 标签用于静态配置
  • 后端和前端处于动态配置中

https://docs.traefik.io/basics/#configuration