mirror of
https://github.com/traefik/traefik-library-image.git
synced 2026-05-02 18:32:33 +00:00
16 lines
592 B
Docker
16 lines
592 B
Docker
FROM mcr.microsoft.com/windows/nanoserver:ltsc2025
|
|
|
|
COPY --from=traefik:v2.11.44-windowsservercore-ltsc2025 /traefik.exe /
|
|
|
|
EXPOSE 80
|
|
ENTRYPOINT [ "/traefik" ]
|
|
|
|
# Metadata
|
|
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="v2.11.44" \
|
|
org.opencontainers.image.documentation="https://docs.traefik.io"
|