Files
Scheduler/docker-compose.prod.yml
Oskar-Mikael 03e3bda0ce
Some checks failed
Deploy App / build-and-deploy (push) Failing after 2m5s
Remove steps for now
2025-08-31 00:38:28 +02:00

28 lines
483 B
YAML

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