chore: merge 001-add-dokploy-deploy — resolve docker-compose conflict (use Traefik labels, retain image/env/restart)

This commit is contained in:
Ahmed Darrazi 2025-12-15 15:38:08 +01:00
commit faaa9153e9

View File

@ -1,13 +1,22 @@
>>>>>>> origin/001-add-dokploy-deploy
version: "3.8" version: "3.8"
services: services:
app: app:
build: build:
context: . context: .
dockerfile: Dockerfile dockerfile: Dockerfile
image: websites-lms:latest image: websites-lms:latest
ports: labels:
- "8080:80" - "traefik.enable=true"
# Replace the Host rule with your actual domain (example below)
- "traefik.http.routers.lms.rule=Host(`lms.example.com`)"
- "traefik.http.routers.lms.entrypoints=web"
# Tell Traefik which internal port the service listens on
- "traefik.http.services.lms.loadbalancer.server.port=80"
environment: environment:
APP_ENV: production APP_ENV: production
APP_DEBUG: "false" APP_DEBUG: "false"
volumes:
- ./:/var/www/html
restart: unless-stopped restart: unless-stopped