Fix the build error in #23 by starting mongodb before building and allowing the builder access to mongodb

This commit is contained in:
Nick 2025-10-16 17:51:00 +02:00
parent 46c8efca83
commit 5ed18338f7
2 changed files with 5 additions and 3 deletions

View File

@ -185,7 +185,7 @@ MONGODB_URI=mongodb://root:example@mongodb:27017/openstock?authSource=admin
4) Start the stack:
```bash
# from the repository root
docker compose up -d --build
docker compose up -d mongodb && docker compose up -d --build
```
5) Access the app:
@ -257,7 +257,7 @@ Local (Docker Compose) MongoDB:
NODE_ENV=development
# Database (Docker)
MONGODB_URI=mongodb://root:example@mongodb:27017/openstock?authSource=admin
MONGODB_URI=mongodb://root:example@127.0.0.1:27017/openstock?authSource=admin
# Better Auth
BETTER_AUTH_SECRET=your_better_auth_secret

View File

@ -1,6 +1,8 @@
services:
openstock:
build: .
build:
context: .
network: host
ports:
- "3000:3000"
env_file: