traefik (latest)
Published 2025-11-30 23:16:24 +00:00 by holden093
Installation
docker pull git.nixit.it/holden093/traefik:latestsha256:8018f69bc323f53079f8eaede36f3cfa4d440301ba32e182ec1448b129cceef4About this package
A modern reverse-proxy
Image layers
| ADD alpine-minirootfs-3.22.2-x86_64.tar.gz / # buildkit |
| CMD ["/bin/sh"] |
| RUN /bin/sh -c apk --no-cache add ca-certificates tzdata # buildkit |
| RUN /bin/sh -c set -ex; apkArch="$(apk --print-arch)"; case "$apkArch" in armhf) arch='armv6' ;; aarch64) arch='arm64' ;; x86_64) arch='amd64' ;; riscv64) arch='riscv64' ;; s390x) arch='s390x' ;; ppc64le) arch='ppc64le' ;; *) echo >&2 "error: unsupported architecture: $apkArch"; exit 1 ;; esac; wget --quiet -O /tmp/traefik.tar.gz "https://github.com/traefik/traefik/releases/download/v3.6.2/traefik_v3.6.2_linux_$arch.tar.gz"; tar xzvf /tmp/traefik.tar.gz -C /usr/local/bin traefik; rm -f /tmp/traefik.tar.gz; chmod +x /usr/local/bin/traefik # buildkit |
| COPY entrypoint.sh / # buildkit |
| EXPOSE map[80/tcp:{}] |
| ENTRYPOINT ["/entrypoint.sh"] |
| CMD ["traefik"] |
| LABEL org.opencontainers.image.vendor=Traefik Labs org.opencontainers.image.url=https://traefik.io org.opencontainers.image.source=https://github.com/traefik/traefik org.opencontainers.image.title=Traefik org.opencontainers.image.description=A modern reverse-proxy org.opencontainers.image.version=v3.6.2 org.opencontainers.image.documentation=https://docs.traefik.io |
| CMD ["--entrypoints.http.address=:80" "--entrypoints.http.http.redirections.entrypoint.to=https" "--entrypoints.http.http.redirections.entrypoint.scheme=https" "--entrypoints.https.address=:443" "--providers.docker=true" "--providers.docker.exposedbydefault=false" "--providers.file.directory=/etc/traefik/configs" "--providers.file.watch=true" "--certificatesresolvers.hetzner.acme.email=kevin@nixit.it" "--certificatesresolvers.hetzner.acme.storage=/etc/traefik/acme/acme.json" "--certificatesresolvers.hetzner.acme.dnschallenge.provider=hetzner" "--certificatesresolvers.hetzner.acme.dnschallenge.resolvers=1.1.1.1:53,1.0.0.1:53"] |
Labels
| Key | Value |
|---|---|
| org.opencontainers.image.description | A modern reverse-proxy |
| org.opencontainers.image.documentation | https://docs.traefik.io |
| org.opencontainers.image.source | https://github.com/traefik/traefik |
| org.opencontainers.image.title | Traefik |
| org.opencontainers.image.url | https://traefik.io |
| org.opencontainers.image.vendor | Traefik Labs |
| org.opencontainers.image.version | v3.6.2 |