Files
Scheduler/docker-compose.prod.yml
oskarb 39ccf02b3c
Some checks failed
Deploy App / build-and-deploy (push) Failing after 11s
oskarb-patch-3 (#3)
Reviewed-on: #3
2025-08-31 08:37:59 +02:00

27 lines
483 B
YAML

services:
app:
image: git.oskarmikael.com/oskarb/scheduler:latest
volumes:
- storage:/var/www/html/storage
- bootstrap_cache:/var/www/html/bootstrap/cache
- .env:/var/www/html/.env
networks:
- laravel
nginx:
image: git.oskarmikael.com/oskarb/scheduler:latest
ports:
- '${APP_PORT:-80}:80'
depends_on:
- app
networks:
- laravel
networks:
laravel:
driver: bridge
volumes:
storage:
bootstrap_cache: