Add new containers to streamline setup
This commit is contained in:
committed by
=Michael Hohn
parent
5021fc824b
commit
681fcdab8c
24
Makefile
24
Makefile
@@ -10,6 +10,30 @@ html: README.html
|
||||
%.html: %.md
|
||||
pandoc --toc=true --standalone $< --out $@
|
||||
|
||||
# Build the qldbtools container image
|
||||
dbt: client-qldbtools-container
|
||||
client-qldbtools-container:
|
||||
cd client/containers/qldbtools && \
|
||||
docker build -t $@ .
|
||||
|
||||
# Run a shell in the container with the qldbtools
|
||||
dbt-run:
|
||||
docker run --rm -it client-qldbtools-container /bin/bash
|
||||
|
||||
dbt-run:
|
||||
docker run --rm -it client-qldbtools-container /bin/bash
|
||||
|
||||
dbt-check:
|
||||
docker run --rm -it client-qldbtools-container mc-db-initial-info
|
||||
|
||||
ghm: client-ghmrva-container
|
||||
client-ghmrva-container:
|
||||
cd client/containers/ghmrva && \
|
||||
docker build -t $@ .
|
||||
ghm-run:
|
||||
docker run --rm client-ghmrva-container --help
|
||||
|
||||
|
||||
server:
|
||||
cd cmd/server && GOOS=linux GOARCH=arm64 go build
|
||||
|
||||
|
||||
Reference in New Issue
Block a user