Skip to content

Commit

Permalink
Fix entrypoint and command when using only numbers by putting quotes …
Browse files Browse the repository at this point in the history
…around them
  • Loading branch information
pflooky committed Jul 18, 2024
1 parent 20e61e1 commit 22825d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ services:
healthcheck:
interval: 30s
retries: 3
test: [CMD-SHELL, [$$(nodetool statusgossip) = running]]
test: [CMD-SHELL, "[ $$(nodetool statusgossip) = running ]"]
timeout: 10s
image: "datacatering/dse-server:6.8.48"
ports:
Expand Down Expand Up @@ -170,7 +170,7 @@ services:
depends_on:
postgres:
condition: service_completed_successfully
entrypoint: [dagster-webserver, -h, 0.0.0.0, -p, 3000, -w, /opt/dagster/app/workspace.yaml]
entrypoint: [dagster-webserver, -h, 0.0.0.0, -p, "3000", -w, /opt/dagster/app/workspace.yaml]
environment:
- DAGSTER_POSTGRES_HOST=postgres
- "DAGSTER_POSTGRES_USER=${POSTGRES_USER:-postgres}"
Expand Down Expand Up @@ -812,7 +812,7 @@ services:
volumes:
- "./data/sqlite:/opt/data"
temporal:
command: [server, start-dev, --db-filename, /opt/data/db/temporal.db, --ip, 0.0.0.0, --metrics-port, 9233]
command: [server, start-dev, --db-filename, /opt/data/db/temporal.db, --ip, 0.0.0.0, --metrics-port, "9233"]
container_name: temporal
entrypoint: temporal
environment: []
Expand Down

0 comments on commit 22825d3

Please sign in to comment.