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
|
|
|
|
|
|
2022-01-05 12:53:04 +01:00
|
|
|
push-scripts:
|
2022-01-05 13:48:54 +01:00
|
|
|
@docker build --no-cache -t decentral1se/beta.lumbung.space-scripts -f Dockerfile.scripts . && \
|
2022-01-05 12:53:04 +01:00
|
|
|
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
|