14 lines
357 B
YAML
14 lines
357 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
app:
|
|
build: .
|
|
image: websites-lms:latest
|
|
restart: unless-stopped
|
|
environment:
|
|
APP_ENV: production
|
|
APP_DEBUG: "true"
|
|
volumes:
|
|
- ./storage:/var/www/html/storage
|
|
- ./.env:/var/www/html/.env
|
|
# command removed: migrations and seeder run handled elsewhere to avoid startup timing issuesA |