Files
static-site-hosting/Makefile
T

17 lines
282 B
Makefile
Raw Normal View History

2025-02-16 15:26:58 -05:00
all: build run
build:
docker build -t static-sites .
run:
2025-02-16 15:46:33 -05:00
docker run -d -p 5121:5121 \
-v $(PWD)/sites:/app/sites \
-v $(PWD)/db.sqlite:/app/db.sqlite \
--name static_sites static-sites
2025-02-16 15:37:38 -05:00
stop:
docker stop static_sites || true
clean: stop
2025-02-16 15:46:33 -05:00
docker rm static_sites || true