Image Overview: traefik

Overview: traefik Chainguard Image

Traefik is a cloud native application proxy.

Download this Image

The image is available on cgr.dev:

docker pull cgr.dev/chainguard/traefik:latest

Using Traefik

The default Traefik ports are 80 and 8080.

There is no default configuration in the image, but you can use a sample one like this:

## traefik.yml


# API and dashboard configuration. DO NOT RUN IN PROD
api:
  insecure: true

Save the configuration file from above as traefik.yml, then run:

docker run -v $PWD:/etc  -p 80:80 -p 8080:8080 cgr.dev/chainguard/traefik  --configFile=/etc/traefik.yml
time="2023-01-29T12:37:55Z" level=info msg="Configuration loaded from file: /etc/traefik.yml"

Users and Directories

By default this image runs as a non-root user named traefik with a uid of 65532.

Last updated: 2024-04-11 12:38