You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lnbook/code/docker/Makefile

17 lines
328 B
Makefile

REGISTRY=docker.com
NAME=lnbook
CONTAINERS=bitcoind lnd eclair c-lightning
all: build-all push-all
build-all:
for container in ${CONTAINERS}; do \
docker build -t ${NAME}/$$container $$container -f $$container/Dockerfile; \
done
push-all:
for container in ${CONTAINERS}; do \
docker push ${NAME}/$$container; \
done