prod & dev docker containers

This commit is contained in:
Maxime Van Hees
2025-10-30 14:07:08 +01:00
parent 592b6c1ea9
commit 9f7ebc6e57
5 changed files with 201 additions and 2 deletions

View File

@@ -22,6 +22,22 @@ The main purpose of HeroDB is to offer a lightweight, embeddable, and Redis-comp
## Quick Start
### Docker
```bash
# Production
docker-compose build herodb-prod
ADMIN_SECRET=your-secret docker-compoae up -d herodb-prod
# Development
docker-compose build herodb-dev
docker-compose up herodb-dev
```
Ports:
- Redis on 6379 (prod) / 6380 (dev)
- RPC on 8080 (prod) / 8081 (dev)
### Building HeroDB
To build HeroDB, navigate to the project root and run: