Update service templates and trigger configuration

- Modified the 'compose' field in service-templates.json to include a new base64 encoded string for better compatibility.
- Changed the default 'PLATFORM_WS_PORT' from 3030 to 3000 in trigger.yaml to align with the updated configuration.
- Removed the redundant 'PORT' environment variable from the common environment settings in trigger.yaml.
This commit is contained in:
Andras Bacsai
2024-12-06 13:41:49 +01:00
parent 8405f7b4f6
commit 8803fdb583
2 changed files with 3 additions and 4 deletions

View File

@@ -5,7 +5,6 @@
# port: 3000
x-common-env: &common-env
PORT: 3030
REMIX_APP_PORT: 3000
NODE_ENV: production
RUNTIME_PLATFORM: docker-compose
@@ -118,7 +117,7 @@ services:
environment:
<<: *common-env
PLATFORM_HOST: trigger
PLATFORM_WS_PORT: 3030
PLATFORM_WS_PORT: 3000
SECURE_CONNECTION: "false"
PLATFORM_SECRET: $PROVIDER_SECRET
coordinator:
@@ -133,7 +132,7 @@ services:
environment:
<<: *common-env
PLATFORM_HOST: trigger
PLATFORM_WS_PORT: 3030
PLATFORM_WS_PORT: 3000
SECURE_CONNECTION: "false"
PLATFORM_SECRET: $COORDINATOR_SECRET
healthcheck:

File diff suppressed because one or more lines are too long