minecraft/Makefile

19 lines
291 B
Makefile
Raw Normal View History

2024-05-13 03:55:42 +00:00
CONTAINER = minecraft-minecraft-1
.PHONY: default build clean install
default: build
build:
docker compose build
clean:
rm screenlog.0
docker compose down --rmi all
docker builder prune -f
install: build
touch screenlog.0
docker compose up -d
sleep 2
docker logs -f $(CONTAINER)