From c515e746f7173c1efe2c9dc47d8f69296190ac1b Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Mon, 13 Jan 2025 12:36:47 -0800 Subject: [PATCH] Update traefik image references to use `%%IMAGE%%` templating (not sure how we missed these previously) --- traefik/content.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/traefik/content.md b/traefik/content.md index 5e7b25dae..bc6c593c8 100644 --- a/traefik/content.md +++ b/traefik/content.md @@ -29,7 +29,7 @@ Start Traefik v3: docker run -d -p 8080:8080 -p 80:80 \ -v $PWD/traefik.yml:/etc/traefik/traefik.yml \ -v /var/run/docker.sock:/var/run/docker.sock \ - traefik:v3 + %%IMAGE%%:v3 ``` Start a backend server using the `traefik/whoami` image: @@ -89,7 +89,7 @@ Start Traefik v2: docker run -d -p 8080:8080 -p 80:80 \ -v $PWD/traefik.yml:/etc/traefik/traefik.yml \ -v /var/run/docker.sock:/var/run/docker.sock \ -traefik:v2.11 +%%IMAGE%%:v2.11 ``` Start a backend server using the `traefik/whoami` image: