Files
canteenhub/compose.yaml
T

21 lines
432 B
YAML

services:
app:
build:
context: .
dockerfile: Dockerfile
container_name: order_system_app
restart: unless-stopped
ports:
- "${PORT:-8080}:80"
environment:
- APP_ENV=local
- APP_DEBUG=true
- DB_CONNECTION=sqlite
- DB_DATABASE=/var/www/html/storage/database.sqlite
volumes:
- .:/var/www/html
- storage_data:/var/www/html/storage
volumes:
storage_data: