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