文件最后提交记录最后更新时间
1 年前
1 年前
1 年前
1 年前
1 年前
1 年前
1 年前
1 年前
1 年前
1 年前
10 个月前
8 个月前
5 个月前
3 个月前
3 个月前
3 个月前
3 个月前
README.md

Quick reference

Traefik | openEuler

Current Traefik docker images are built on the openEuler. This repository is free to use and exempted from per-user rate limits.

Traefik (pronounced traffic) is a modern HTTP reverse proxy and load balancer that makes deploying microservices easy. Traefik integrates with your existing infrastructure components and configures itself automatically and dynamically. Pointing Traefik at your orchestrator should be the only configuration step you need.

Learn more about Traefik on the Traefik Website.

Supported tags and respective Dockerfile links

The tag of each traefik docker image is consist of the version of traefik and the version of basic image. The details are as follows

Tag Currently Architectures
3.7.0-ea.2-oe2403sp3 traefik 3.7.0-ea.2 on openEuler 24.03-LTS-SP3 amd64, arm64
3.6.7-oe2403sp3 traefik 3.6.7 on openEuler 24.03-LTS-SP3 amd64, arm64
3.5.4-oe2403sp2 traefik 3.5.4 on openEuler 24.03-LTS-SP2 amd64, arm64
2.11.0-oe2203sp3 Traefik 2.11.0 on openEuler 22.03-LTS-SP3 amd64, arm64
3.1.4-oe2203sp3 Traefik 3.1.4 on openEuler 22.03-LTS-SP3 amd64, arm64
3.1.5-oe2203sp3 Traefik 3.1.5 on openEuler 22.03-LTS-SP3 amd64, arm64
3.1.6-oe2003sp4 Traefik 3.1.6 on openEuler 20.03-LTS-SP4 amd64, arm64
3.1.6-oe2203sp1 Traefik 3.1.6 on openEuler 22.03-LTS-SP1 amd64, arm64
3.1.6-oe2203sp3 Traefik 3.1.6 on openEuler 22.03-LTS-SP3 amd64, arm64
3.1.6-oe2203sp4 Traefik 3.1.6 on openEuler 22.03-LTS-SP4 amd64, arm64
3.1.6-oe2403lts Traefik 3.1.6 on openEuler 24.03-LTS amd64, arm64
3.2.0-oe2203sp1 Traefik 3.2.0 on openEuler 22.03-LTS-SP1 amd64, arm64
3.2.0-oe2203sp3 Traefik 3.2.0 on openEuler 22.03-LTS-SP3 amd64, arm64
3.2.0-oe2203sp4 Traefik 3.2.0 on openEuler 22.03-LTS-SP4 amd64, arm64
3.2.0-oe2403lts Traefik 3.2.0 on openEuler 24.03-LTS amd64, arm64

Usage

In this usage, users can select the corresponding {Tag} and container startup options based on their requirements.

  • Pull the openeuler/traefik image from docker

    docker pull openeuler/traefik:{Tag}
    
  • Start a traefik instance

    docker run -d --name my-traefik -p 80:80 openeuler/traefik:{Tag}
    

    After the instance my-traefik is started, access the Traefik service through http://localhost:80.

  • Container startup options

    Option Description
    -p 80:80 Expose Traefik server on localhost:80.
    -v /path/to/traefik.yml:/etc/traefik/traefik.yml Local Traefik configuration file.
  • View container running logs

    docker logs -f my-traefik
    
  • To get an interactive shell

    docker exec -it my-traefik /bin/bash
    

Question and answering

If you have any questions or want to use some special features, please submit an issue or a pull request on openeuler-docker-images.