Switch to Quadlet and add agent instructions

This commit is contained in:
2026-02-19 01:33:40 +00:00
parent 6cab298b75
commit d8f06a3e61
6 changed files with 629 additions and 4 deletions

View File

@@ -1,13 +1,30 @@
QUADLET_MGR := ./scripts/quadlet/manage.sh
run:
docker-compose --env-file=stack.env up -d
bash $(QUADLET_MGR) up
build:
docker-compose --env-file=stack.env build
stop:
docker-compose --env-file=stack.env down
bash $(QUADLET_MGR) down
log:
bash $(QUADLET_MGR) logs
status:
bash $(QUADLET_MGR) status
quadlet-install:
bash $(QUADLET_MGR) install
compose-run:
docker-compose --env-file=stack.env up -d
compose-stop:
docker-compose --env-file=stack.env down
compose-log:
docker-compose --env-file=stack.env logs -f --names
test: