fixup! Pritup pres PHP a docker

This commit is contained in:
lachtan obecny
2026-08-17 20:53:20 +02:00
parent d2099b9a6c
commit 4ae2da01c2
2 changed files with 18 additions and 0 deletions

12
Makefile Normal file
View File

@@ -0,0 +1,12 @@
COMPOSE ?= docker compose
.PHONY: build up down
build:
$(COMPOSE) build
up:
$(COMPOSE) up -d
down:
$(COMPOSE) down

6
compose.yaml Normal file
View File

@@ -0,0 +1,6 @@
services:
get:
build: .
ports:
- "${PORT:-8082}:80"
restart: unless-stopped