Files
self-bot/Makefile
T
2025-04-08 15:21:23 -04:00

11 lines
283 B
Makefile

build:
docker build -t ion606-bot .
run: build
docker run --rm -d --env-file .env -v "$(shell pwd)"/data:/app/data ion606-bot
stop:
docker stop $$(docker ps -q --filter ancestor=ion606-bot)
dev: build
docker run --rm --env-file .env -v "$(shell pwd)"/data:/app/data ion606-bot