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

Move docker-compose to image build. #302

Merged
merged 2 commits into from
Sep 21, 2020
Merged
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
6 changes: 4 additions & 2 deletions deploy/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
version: "2.1"
services:
tink-server:
image: quay.io/tinkerbell/tink:latest
build:
context: ./cmd/tink-server
restart: unless-stopped
environment:
FACILITY: ${FACILITY:-onprem}
Expand Down Expand Up @@ -48,7 +49,8 @@ services:
retries: 30

tink-cli:
image: quay.io/tinkerbell/tink-cli:latest
build:
context: ./cmd/tink-cli
restart: unless-stopped
environment:
TINKERBELL_GRPC_AUTHORITY: 127.0.0.1:42113
Expand Down