Files
Scheduler/docker-compose.prod.yml
oskarb 5562f1e32c
All checks were successful
Deploy App / build-and-deploy (push) Successful in 2m7s
Update docker-compose.prod.yml
2025-08-31 07:43:23 +02:00

30 lines
543 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: nginx:1.27
volumes:
- ../nginx.conf:/etc/nginx/conf.d/default.conf:ro
- .:/var/www/html
ports:
- '${APP_PORT:-80}:80'
depends_on:
- app
networks:
- laravel
networks:
laravel:
driver: bridge
volumes:
storage:
bootstrap_cache: