Files
self-bot/Makefile
T

11 lines
283 B
Makefile
Raw Normal View History

2025-03-23 13:38:56 -04:00
build:
docker build -t ion606-bot .
2025-04-07 12:27:19 -04:00
run: build
2025-04-08 15:21:23 -04:00
docker run --rm -d --env-file .env -v "$(shell pwd)"/data:/app/data ion606-bot
2025-03-24 16:34:59 -04:00
2025-03-24 16:58:14 -04:00
stop:
docker stop $$(docker ps -q --filter ancestor=ion606-bot)
2025-03-24 16:34:59 -04:00
dev: build
2025-04-08 15:21:23 -04:00
docker run --rm --env-file .env -v "$(shell pwd)"/data:/app/data ion606-bot