lms/docker-compose.yml

10 lines
273 B
YAML

version: "3.8"
services:
app:
image: websites-lms:latest
restart: unless-stopped
environment:
APP_ENV: production
APP_DEBUG: "true"
command: sh -lc "php artisan migrate --force && php artisan db:seed --class=ImportDeLanguageSeeder && php-fpm"