Attempt deploy
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 6s
Deploy App / build-and-deploy (push) Has been cancelled

This commit is contained in:
2025-08-31 00:04:56 +02:00
parent 7ba0cfaad9
commit 1e63877a2f
3 changed files with 122 additions and 0 deletions

28
docker-compose.prod.yml Normal file
View File

@@ -0,0 +1,28 @@
version: '3.9'
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: