dockerfiles/Makefile

28 lines
732 B
Makefile
Raw Normal View History

.PHONY: build push hub build_reg push_reg registry all
modded_mc = siverten/magma siverten/rlcraft
mc_contexts = $(modded_mc) siverten/papermc siverten/waterfall
game_contexts = $(mc_contexts) siverten/tshock
2021-09-14 14:59:53 +02:00
contexts = siverten/bind9 siverten/oxen siverten/tor\
$(game_contexts)
2022-05-05 22:07:07 +02:00
build:
$(foreach context,$(contexts),docker build --pull $(context);)
2022-05-05 22:07:07 +02:00
push:
$(foreach context,$(contexts),docker push $(context);)
hub: build push
2022-05-05 22:07:07 +02:00
reg_contexts = xmr-stak
build_reg:
$(foreach context,$(reg_contexts),docker build --pull $(context);docker tag $(context) registry.42069.no/$(context))
2022-05-05 22:07:07 +02:00
push_reg:
$(foreach context,$(reg_contexts),docker push registry.42069.no/$(context);)
2022-05-05 22:07:07 +02:00
registry: build_reg push_reg
all: hub registry
2021-09-14 14:59:53 +02:00