Skip to content

Commit

Permalink
Fix invalid interpolation in docker-compose:
Browse files Browse the repository at this point in the history
This allows `make run` to successfully run and bring
up the docker-compose stack.

Signed-off-by: Jacob Weinstock <[email protected]>
  • Loading branch information
jacobweinstock committed Jun 13, 2022
1 parent 0a800a4 commit 6620bfd
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 @@ -43,7 +43,7 @@ services:
ROLLBAR_TOKEN: ${ROLLBAR_TOKEN:-ignored}
TINKERBELL_GRPC_AUTHORITY: :42113
TINKERBELL_HTTP_AUTHORITY: :42114
TINKERBELL_TLS: ${TINKERBERLL_TLS:"true"}
TINKERBELL_TLS: ${TINKERBERLL_TLS:-"true"}
volumes:
- certs:/certs/${FACILITY:-onprem}:ro
ports:
Expand Down Expand Up @@ -87,7 +87,7 @@ services:
PGUSER: tinkerbell
TINKERBELL_GRPC_AUTHORITY: :42113
TINKERBELL_HTTP_AUTHORITY: :42114
TINKERBELL_TLS: ${TINKERBERLL_TLS:"true"}
TINKERBELL_TLS: ${TINKERBERLL_TLS:-"true"}
depends_on:
db:
condition: service_healthy
Expand All @@ -109,7 +109,7 @@ services:
dockerfile: Dockerfile
environment:
TINKERBELL_GRPC_AUTHORITY: tink-server:42113
TINKERBELL_TLS: ${TINKERBERLL_TLS:"true"}
TINKERBELL_TLS: ${TINKERBERLL_TLS:-"true"}
depends_on:
tink-server:
condition: service_healthy
Expand Down

0 comments on commit 6620bfd

Please sign in to comment.