fix(swarm): Convert boolean env vars to strings in orchestrator service
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Docker Compose/Swarm requires environment variables to be strings, not booleans. Changes: - KILLSWITCH_ENABLED: true -> "true" - SANDBOX_ENABLED: true -> "true" Fixes deployment error: 'must be a string, number or null'
This commit is contained in:
@@ -291,8 +291,8 @@ services:
|
|||||||
DOCKER_SOCKET: /var/run/docker.sock
|
DOCKER_SOCKET: /var/run/docker.sock
|
||||||
GIT_USER_NAME: "Mosaic Orchestrator"
|
GIT_USER_NAME: "Mosaic Orchestrator"
|
||||||
GIT_USER_EMAIL: "orchestrator@mosaicstack.dev"
|
GIT_USER_EMAIL: "orchestrator@mosaicstack.dev"
|
||||||
KILLSWITCH_ENABLED: true
|
KILLSWITCH_ENABLED: "true"
|
||||||
SANDBOX_ENABLED: true
|
SANDBOX_ENABLED: "true"
|
||||||
volumes:
|
volumes:
|
||||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||||
- orchestrator_workspace:/workspace
|
- orchestrator_workspace:/workspace
|
||||||
|
|||||||
Reference in New Issue
Block a user