feat: initial foundation for collaborative canteen ordering system in vanilla PHP
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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:
|
||||
Reference in New Issue
Block a user