Add minimal root docker-compose for Dokploy

This commit is contained in:
Ahmed Darrazi 2025-12-15 13:40:18 +01:00
parent 99f9f779c9
commit b77dda38d0

13
docker-compose.yml Normal file
View File

@ -0,0 +1,13 @@
version: "3.8"
services:
app:
build:
context: .
dockerfile: Dockerfile
image: websites-lms:latest
ports:
- "8080:80"
environment:
APP_ENV: production
APP_DEBUG: "false"
restart: unless-stopped