All checks were successful
Deploy App / build-and-deploy (push) Successful in 2m12s
29 lines
519 B
YAML
29 lines
519 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
|
|
ports:
|
|
- '${APP_PORT:-80}:80'
|
|
depends_on:
|
|
- app
|
|
networks:
|
|
- laravel
|
|
|
|
networks:
|
|
laravel:
|
|
driver: bridge
|
|
|
|
volumes:
|
|
storage:
|
|
bootstrap_cache:
|