Files
lumbung.space/makefile

18 lines
488 B
Makefile
Raw Permalink Normal View History

2021-12-15 11:29:58 +01:00
DEFAULT: serve
serve:
2021-12-15 13:22:30 +01:00
@hugo serve --watch
2021-12-15 11:29:58 +01:00
2022-01-05 11:02:44 +01:00
push-hugo:
@docker build -t decentral1se/beta.lumbung.space -f Dockerfile.hugo . && \
docker push decentral1se/beta.lumbung.space
push-scripts:
@docker build --no-cache -t decentral1se/beta.lumbung.space-scripts -f Dockerfile.scripts . && \
docker push decentral1se/beta.lumbung.space-scripts
2022-01-05 13:00:42 +01:00
deploy:
@DOCKER_CONTEXT=lumbung.space docker stack deploy -c compose.yml beta_lumbung_space
.PHONY: serve gen push-hugo push-scripts deploy