feature: add api for categories

feature: add initial docker build and compose for development mode
This commit is contained in:
jon brookes 2026-01-15 15:29:42 +00:00
parent 6bf486e52b
commit f980be8e28
14 changed files with 520 additions and 0 deletions

18
docker-compose-dev.yml Normal file
View file

@ -0,0 +1,18 @@
services:
#PHP Service
app:
image: quay.io/marshyon/share-lt:0.0.1
ports:
- "8000:8000"
command: sh -c "php artisan optimize:clear && php artisan serve --host=0.0.0.0 --port=8000"
volumes:
- ./.env:/var/www/.env
- ./database/database.sqlite:/var/www/database/database.sqlite
- ./storage:/var/www/storage
restart: unless-stopped
tty: true
working_dir: /var/www