Files
Scheduler/docker-compose.prod.yml
oskarb 657ad8bbe6
Some checks failed
Deploy App / build-and-deploy (push) Failing after 2m5s
Update docker-compose.prod.yml
2025-08-31 08:21:08 +02:00

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