Skip to content

Commit

Permalink
Merge pull request #422 from serverlessworkflow/fix-docker-compose
Browse files Browse the repository at this point in the history
Fix the compose files to properly quote boolean values used in environment variables
  • Loading branch information
cdavernas authored Oct 7, 2024
2 parents b9d6c33 + a2aebed commit 9359d59
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions deployments/docker-compose/docker-compose.build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
dockerfile: ./src/api/Synapse.Api.Server/Dockerfile
environment:
CONNECTIONSTRINGS__REDIS: ${GARNET_URI}
SYNAPSE_DASHBOARD_SERVE: true
SYNAPSE_DASHBOARD_SERVE: 'true'
SYNAPSE_API_AUTH_TOKEN_FILE: /app/tokens.yaml
SYNAPSE_API_JWT_AUTHORITY: http://api:8080
SYNAPSE_API_CLOUD_EVENTS_ENDPOINT: https://webhook.site/a4aff725-0711-48b2-a9d2-5d1b806d04d0
Expand All @@ -31,7 +31,7 @@ services:
SYNAPSE_OPERATOR_NAMESPACE: default
SYNAPSE_OPERATOR_NAME: operator-1
SYNAPSE_RUNNER_API: http://api:8080
SYNAPSE_RUNNER_LIFECYCLE_EVENTS: true
SYNAPSE_RUNNER_LIFECYCLE_EVENTS: 'true'
SYNAPSE_RUNNER_CONTAINER_PLATFORM: docker
DOCKER_HOST: unix:///var/run/docker.sock
extra_hosts:
Expand Down
4 changes: 2 additions & 2 deletions deployments/docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
image: ghcr.io/serverlessworkflow/synapse/api
environment:
CONNECTIONSTRINGS__REDIS: ${GARNET_URI}
SYNAPSE_DASHBOARD_SERVE: true
SYNAPSE_DASHBOARD_SERVE: 'true'
SYNAPSE_API_AUTH_TOKEN_FILE: /app/tokens.yaml
SYNAPSE_API_JWT_AUTHORITY: http://api:8080
SYNAPSE_API_CLOUD_EVENTS_ENDPOINT: https://webhook.site/a4aff725-0711-48b2-a9d2-5d1b806d04d0
Expand All @@ -27,7 +27,7 @@ services:
SYNAPSE_OPERATOR_NAMESPACE: default
SYNAPSE_OPERATOR_NAME: operator-1
SYNAPSE_RUNNER_API: http://api:8080
SYNAPSE_RUNNER_LIFECYCLE_EVENTS: true
SYNAPSE_RUNNER_LIFECYCLE_EVENTS: 'true'
SYNAPSE_RUNNER_CONTAINER_PLATFORM: docker
SYNAPSE_RUNTIME_DOCKER_SECRETS_DIRECTORY: C:\Users\User\.synapse\secrets
DOCKER_HOST: unix:///var/run/docker.sock
Expand Down

0 comments on commit 9359d59

Please sign in to comment.