Skip to content

Commit 8185482

Browse files
authored
Merge pull request #2370 from gentslava/fix/traefik_3
bump: Traefik 3.5.0
2 parents e72a468 + dd8f5db commit 8185482

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

apps/dokploy/setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import {
2121
await initializeNetwork();
2222
createDefaultTraefikConfig();
2323
createDefaultServerTraefikConfig();
24-
await execAsync("docker pull traefik:v3.2.2");
24+
await execAsync("docker pull traefik:v3.5.0");
2525
await initializeStandaloneTraefik();
2626
await initializeRedis();
2727
await initializePostgres();

packages/server/src/setup/traefik-setup.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ export const TRAEFIK_PORT =
1313
Number.parseInt(process.env.TRAEFIK_PORT!, 10) || 80;
1414
export const TRAEFIK_HTTP3_PORT =
1515
Number.parseInt(process.env.TRAEFIK_HTTP3_PORT!, 10) || 443;
16-
export const TRAEFIK_VERSION = process.env.TRAEFIK_VERSION || "3.2.2";
16+
export const TRAEFIK_VERSION = process.env.TRAEFIK_VERSION || "3.5.0";
17+
1718

1819
export interface TraefikOptions {
1920
env?: string[];

0 commit comments

Comments
 (0)