Skip to content

Commit

Permalink
Fix invalid interpolation in docker-compose: (#627)
Browse files Browse the repository at this point in the history
## Description


This allows `make run` to successfully run and bring up the docker-compose stack.

## Why is this needed



Fixes: #

## How Has This Been Tested?





## How are existing users impacted? What migration steps/scripts do we need?





## Checklist:

I have:

- [ ] updated the documentation and/or roadmap (if required)
- [ ] added unit or e2e tests
- [ ] provided instructions on how to upgrade
  • Loading branch information
mergify[bot] authored Jun 14, 2022
2 parents 0a800a4 + 6620bfd commit 9039877
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 9039877

Please sign in to comment.