Compare commits

...

3 Commits

Author SHA1 Message Date
Mauricio Siu
159584c5df refactor: update 2024-12-25 01:44:16 -06:00
Mauricio Siu
bffd8c3e9c refactor: test 2024-12-25 01:32:33 -06:00
Mauricio Siu
5e7486859f refactor: update 2024-12-25 01:32:07 -06:00
2 changed files with 287 additions and 287 deletions

View File

@@ -99,14 +99,14 @@ workflows:
only:
- main
- canary
- fix/nixpacks-version
- 804-services-deployed-via-dokploy-inaccessible-after-customizing-traefik-ports-via-environment-variables
- build-arm64:
filters:
branches:
only:
- main
- canary
- fix/nixpacks-version
- 804-services-deployed-via-dokploy-inaccessible-after-customizing-traefik-ports-via-environment-variables
- combine-manifests:
requires:
- build-amd64
@@ -116,4 +116,4 @@ workflows:
only:
- main
- canary
- fix/nixpacks-version
- 804-services-deployed-via-dokploy-inaccessible-after-customizing-traefik-ports-via-environment-variables

View File

@@ -68,9 +68,9 @@ export const initializeTraefik = async ({
Replicas: 1,
},
},
Labels: {
"traefik.enable": "true",
},
// Labels: {
// "traefik.enable": "true",
// },
EndpointSpec: {
Ports: [
{
@@ -172,7 +172,7 @@ export const createDefaultServerTraefikConfig = () => {
writeFileSync(
path.join(DYNAMIC_TRAEFIK_PATH, `${appName}.yml`),
yamlStr,
"utf8",
"utf8"
);
};