Files
Scheduler/docker-compose.prod.yml
oskarb f9fb619666
Some checks failed
Deploy App / build-and-deploy (push) Failing after 12s
oskarb-patch-1 (#1)
Reviewed-on: #1
2025-08-31 08:03:48 +02:00

29 lines
476 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:
build:
context: .
target: nginx
ports:
- '${APP_PORT:-80}:80'
depends_on:
- app
networks:
- laravel
networks:
laravel:
driver: bridge
volumes:
storage:
bootstrap_cache: