prod setup is now fully ready

This commit is contained in:
Priec
2026-05-20 11:14:42 +02:00
parent 8236fb83bc
commit a385b0540d
7 changed files with 173 additions and 1 deletions

20
Makefile Normal file
View File

@@ -0,0 +1,20 @@
COMPOSE = docker compose -f docker-compose.prod.yml --env-file .env.production
.PHONY: up down restart logs build ps
up:
$(COMPOSE) up -d --build
down:
$(COMPOSE) down
restart: down up
logs:
$(COMPOSE) logs -f --tail=100
build:
$(COMPOSE) build --no-cache
ps:
$(COMPOSE) ps