diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6f4c9bf --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +COMPOSE ?= docker compose + +.PHONY: build up down + +build: + $(COMPOSE) build + +up: + $(COMPOSE) up -d + +down: + $(COMPOSE) down diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..c9017c4 --- /dev/null +++ b/compose.yaml @@ -0,0 +1,6 @@ +services: + get: + build: . + ports: + - "${PORT:-8082}:80" + restart: unless-stopped