mirror of
https://github.com/ION606/static-site-hosting.git
synced 2026-05-14 22:16:54 +00:00
c1f26094de
* split into files * attempted path fix * perms fix * added missed functions * fixed circular dependancy * I hate splitting * env fix * path fix
19 lines
209 B
Makefile
19 lines
209 B
Makefile
all: run
|
|
|
|
run:
|
|
docker compose up --build -d
|
|
|
|
stop:
|
|
docker compose down -v
|
|
|
|
restart: stop run
|
|
|
|
logs:
|
|
docker compose logs -f
|
|
|
|
clean: stop
|
|
rm -f output.log app.pid
|
|
|
|
reset: clean
|
|
rm -rf instance
|
|
rm -rf sites
|