Compare commits

..

No commits in common. "faaa9153e9bf5bd36cbd9314851dec9894c72391" and "c44bcc85b6082a23f4e0ebb57c9b8ed35105a4bd" have entirely different histories.

View File

@ -1,22 +1,13 @@
>>>>>>> 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
labels: ports:
- "traefik.enable=true" - "8080:80"
# 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