Skip to content

Commit

Permalink
chore: update traefik image to traefik:v2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
tobi-bams committed Nov 6, 2024
1 parent 437d3eb commit 6b0c22a
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: "2"

services:
reverse-proxy:
image: traefik:v2.2.1
image: traefik:v2.9
container_name: traefik.sphinx
restart: unless-stopped
networks:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
load_balancer:
image: traefik:v2.2.1
image: traefik:v2.9
container_name: load_balancer
restart: unless-stopped
networks:
Expand Down
2 changes: 1 addition & 1 deletion second-brain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: "2"

services:
load_balancer:
image: traefik:v2.2.1
image: traefik:v2.9
container_name: load_balancer
restart: unless-stopped
networks:
Expand Down
2 changes: 1 addition & 1 deletion sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: "2"

services:
reverse-proxy:
image: traefik:v2.2.1
image: traefik:v2.9
container_name: traefik.sphinx
restart: unless-stopped
networks:
Expand Down
2 changes: 1 addition & 1 deletion sphinxv2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: "2"

services:
reverse-proxy:
image: traefik:v2.2.1
image: traefik:v2.9
container_name: traefik.sphinx
restart: unless-stopped
networks:
Expand Down
2 changes: 1 addition & 1 deletion src/images/traefik.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ fn _aws_env() -> Option<Vec<String>> {

fn _traefik(img: &TraefikImage) -> Config<String> {
let name = img.name.clone();
let image = "traefik:v2.2.1";
let image = "traefik:v2.9";
let mut ports = vec!["80", "443"];
let insecure = match std::env::var("TRAEFIK_INSECURE") {
Ok(_) => true,
Expand Down
2 changes: 1 addition & 1 deletion superadmin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: "2"

services:
load_balancer:
image: traefik:v2.2.1
image: traefik:v2.9
container_name: load_balancer
restart: unless-stopped
networks:
Expand Down

0 comments on commit 6b0c22a

Please sign in to comment.