{"id":19152735,"url":"https://github.com/traefik/traefik-library-image","last_synced_at":"2025-04-04T18:05:42.579Z","repository":{"id":43710849,"uuid":"286701860","full_name":"traefik/traefik-library-image","owner":"traefik","description":"Used to build Official Docker image of Traefik Proxy","archived":false,"fork":false,"pushed_at":"2025-02-25T10:19:00.000Z","size":180,"stargazers_count":175,"open_issues_count":3,"forks_count":42,"subscribers_count":17,"default_branch":"master","last_synced_at":"2025-03-28T17:09:32.980Z","etag":null,"topics":["docker-image","traefik"],"latest_commit_sha":null,"homepage":"https://store.docker.com/images/traefik","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/traefik.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-08-11T09:27:02.000Z","updated_at":"2025-03-28T01:12:24.000Z","dependencies_parsed_at":"2024-04-11T17:30:11.391Z","dependency_job_id":"eb5aa882-0977-4e22-b598-2476cc8fcfe9","html_url":"https://github.com/traefik/traefik-library-image","commit_stats":null,"previous_names":[],"tags_count":154,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/traefik%2Ftraefik-library-image","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/traefik%2Ftraefik-library-image/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/traefik%2Ftraefik-library-image/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/traefik%2Ftraefik-library-image/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/traefik","download_url":"https://codeload.github.com/traefik/traefik-library-image/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247226213,"owners_count":20904465,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker-image","traefik"],"created_at":"2024-11-09T08:19:12.359Z","updated_at":"2025-04-04T18:05:42.552Z","avatar_url":"https://github.com/traefik.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Traefik Logo](https://docs.traefik.io/assets/img/traefik.logo.png)\n\n[Traefik](https://traefik.io) is a modern HTTP reverse proxy and ingress controller that makes deploying microservices easy.\n\nTraefik integrates with your existing infrastructure components ([Kubernetes](https://kubernetes.io), [Docker](https://www.docker.com/), [Swarm](https://docs.docker.com/engine/swarm/), [Consul](https://www.consul.io/), [Nomad](https://www.nomadproject.io/), [etcd](https://coreos.com/etcd/), [Amazon ECS](https://aws.amazon.com/ecs), ...) and configures itself automatically and dynamically.\n\nPointing Traefik at your orchestrator should be the *only* configuration step you need.\n\n## Traefik v3 - Example usage\n\nEnable `docker` provider and dashboard UI:\n\n```yml\n## traefik.yml\n\n# Docker configuration backend\nproviders:\n  docker:\n    defaultRule: \"Host(`{{ trimPrefix `/` .Name }}.docker.localhost`)\"\n\n# API and dashboard configuration\napi:\n  insecure: true\n```\n\nStart Traefik v3:\n\n```sh\ndocker run -d -p 8080:8080 -p 80:80 \\\n  -v $PWD/traefik.yml:/etc/traefik/traefik.yml \\\n  -v /var/run/docker.sock:/var/run/docker.sock \\\n  traefik:v3\n```  \n\nStart a backend server using the `traefik/whoami` image:\n\n```sh\ndocker run -d --name test traefik/whoami\n```\n\nAccess the whoami service through Traefik via the defined rule `test.docker.localhost`:\n\n```console\n$ curl test.docker.localhost\nHostname: 0693100b16de\nIP: 127.0.0.1\nIP: ::1\nIP: 192.168.215.4\nRemoteAddr: 192.168.215.3:57618\nGET / HTTP/1.1\nHost: test.docker.localhost\nUser-Agent: curl/8.7.1\nAccept: */*\nAccept-Encoding: gzip\nX-Forwarded-For: 192.168.215.1\nX-Forwarded-Host: test.docker.localhost\nX-Forwarded-Port: 80\nX-Forwarded-Proto: http\nX-Forwarded-Server: 8a37fd4f35fb\nX-Real-Ip: 192.168.215.1\n```\n\nAccess the Traefik Dashboard:\n\nOpen your web browser and navigate to `http://localhost:8080` to access the Traefik dashboard.\nThis will provide an overview of routers, services, and middlewares.\n\n![Dashboard UI](https://raw.githubusercontent.com/traefik/traefik/v3.2/docs/content/assets/img/webui-dashboard.png)\n\n## Traefik v2 - Example usage\n\nEnable `docker` provider and dashboard UI:\n\n```yml\n## traefik.yml\n\n# Docker configuration backend\nproviders:\n  docker:\n    defaultRule: \"Host(`{{ trimPrefix `/` .Name }}.docker.localhost`)\"\n\n# API and dashboard configuration\napi:\n  insecure: true\n```\n\nStart Traefik v2:\n\n```sh\ndocker run -d -p 8080:8080 -p 80:80 \\\n-v $PWD/traefik.yml:/etc/traefik/traefik.yml \\\n-v /var/run/docker.sock:/var/run/docker.sock \\\ntraefik:v2.11\n```\n\nStart a backend server using the `traefik/whoami` image:\n\n```sh\ndocker run -d --name test traefik/whoami\n```\n\nAccess the whoami service through Traefik via the defined rule `test.docker.localhost`:\n\n```console\n$ curl test.docker.localhost\nHostname: 390a880bdfab\nIP: 127.0.0.1\nIP: 172.17.0.3\nGET / HTTP/1.1\nHost: test.docker.localhost\nUser-Agent: curl/7.65.3\nAccept: */*\nAccept-Encoding: gzip\nX-Forwarded-For: 172.17.0.1\nX-Forwarded-Host: test.docker.localhost\nX-Forwarded-Port: 80\nX-Forwarded-Proto: http\nX-Forwarded-Server: 7e073cb54211\nX-Real-Ip: 172.17.0.1\n```\n\nAccess the Traefik Dashboard:\n\nOpen your web browser and navigate to `http://localhost:8080` to access the Traefik dashboard.\nThis will provide an overview of routers, services, and middlewares.\n\n![Dashboard UI](https://raw.githubusercontent.com/traefik/traefik/v2.0/docs/content/assets/img/webui-dashboard.png)\n\n## Documentation\n\nYou can find the complete documentation:\n\n- for [v3.x](https://doc.traefik.io/traefik/)\n- for [v2.11](https://doc.traefik.io/traefik/v2.11)\n\nA community support is available at [https://community.traefik.io](https://community.traefik.io)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftraefik%2Ftraefik-library-image","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftraefik%2Ftraefik-library-image","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftraefik%2Ftraefik-library-image/lists"}