Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the compose files to properly quote boolean values used in environment variables #422

Merged
merged 1 commit into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading