Skip to content

Commit ea5d86e

Browse files
authored
Merge pull request #3000 from Bima42/fix/bump-traefik-version
chore: bump traefik to 3.6.1
2 parents dd06c70 + d22aa05 commit ea5d86e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/dokploy/setup.ts

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const TRAEFIK_PORT =
2020
Number.parseInt(process.env.TRAEFIK_PORT!, 10) || 80;
2121
export const TRAEFIK_HTTP3_PORT =
2222
Number.parseInt(process.env.TRAEFIK_HTTP3_PORT!, 10) || 443;
23-
export const TRAEFIK_VERSION = process.env.TRAEFIK_VERSION || "3.5.0";
23+
export const TRAEFIK_VERSION = process.env.TRAEFIK_VERSION || "3.6.1";
2424

2525
export interface TraefikOptions {
2626
env?: string[];

0 commit comments

Comments
 (0)