Add bundled Docker deployment

This commit is contained in:
2026-05-21 16:38:30 +02:00
parent 1b420271c7
commit d1d7cf5265
6 changed files with 112 additions and 0 deletions
+12
View File
@@ -46,6 +46,18 @@ mise run frontend
If you have activated mise in your shell, the direct commands also work:
`backend/mvnw -f backend/pom.xml spring-boot:run` and `cd frontend && npm run dev`.
## Docker (all-in-one app + database)
Build and run the bundled app container plus PostgreSQL:
```bash
docker compose -f docker-compose.full.yml up --build
```
- App: http://localhost:8080
- API: http://localhost:8080/api
- Database: postgres://app:app@localhost:5432/app_dev
## Verify everything
```bash