fix: repair docker build and apply migrations
Some checks failed
ci / ci (22, ubuntu-latest) (push) Has been cancelled
Build and Push Docker Image / build (push) Has been cancelled

This commit is contained in:
2026-03-25 19:24:15 +01:00
parent 561fb56419
commit 1d5fb09eb0
6 changed files with 45 additions and 17 deletions

22
docker-compose.dev.yml Normal file
View File

@@ -0,0 +1,22 @@
services:
app:
container_name: pihka-al-dev
build:
context: .
target: build
command: pnpm dev
ports:
- "3000:3000"
environment:
- DATABASE_URL=/data/db.sqlite
- ADMIN_USERNAME=admin
- ADMIN_PASSWORD=admin
- REDIRECT_DOMAIN=localhost
- NUXT_SESSION_PASSWORD=dev-session-password-32-chars-min
volumes:
- .:/app
- /app/node_modules
- db:/data
volumes:
db: