This repository has been archived on 2023-02-03. You can view files and clone it, but cannot push or open issues or pull requests.
autonomic.zone/Makefile
Luke Murphy 06b82858f9
All checks were successful
continuous-integration/drone/push Build is passing
Use different configs for different envs
2020-04-06 13:45:40 +02:00

21 lines
468 B
Makefile

DEV_DIST_DIR:=dist
devserver:
@echo "Serving development site from $(DEV_DIST_DIR)"
@jekyll serve --watch --incremental --destination $(DEV_DIST_DIR)
.PHONY: devserver
dockerbuild:
@docker build -t autonomic/autonomic.zone:testing .
.PHONY: dockerbuild
dockerserver: dockerbuild
@docker run \
-e JEKYLL_PORT=4000 \
-e JEKYLL_HOST=0.0.0.0 \
-e JEKYLL_CONFIG=_config_dev.yml \
-p 4000:4000 \
-d \
autonomic/autonomic.zone:testing
.PHONY: dockerserver