services/templates/traefik/Dockerfile.gotmpl
Dan Anglin 9e24f50653
fix(traefik): redirect root domain to Free Flow
Redirect requests made to the root domain to Free Flow.
2023-08-01 02:45:28 +01:00

11 lines
246 B
Docker

FROM traefik:{{ .Traefik.Version }}
ADD traefik.yaml /flow/traefik/
ADD dynamic_root_domain_redirect.yaml /tmp/dynamic_root_domain_redirect.yaml
ADD entrypoint.sh /
RUN chmod +x /entrypoint.sh
CMD ["--configfile=/flow/traefik/traefik.yaml"]