Installation Guide
Choose your installation method and get B2ALABS running in minutes.
Docker Compose Installation
Recommended for local development and testing. Easiest way to get started.
Installation Steps
1. Clone the repository
git clone https://github.com/b2alabs/b2alabs.git cd b2alabs
2. Configure environment variables (optional)
cp .env.example .env # Edit .env with your configuration nano .env
3. Start all services
docker-compose up -d
4. Verify services are running
docker-compose ps
5. Apply database migrations
cd packages/gateway-core make migrate-up
6. Access the services
- • Web Dashboard: http://localhost:3000
- • Gateway API: http://localhost:8080
- • Grafana: http://localhost:3001 (admin/admin)
Management Commands
# Stop services docker-compose down
# Restart services docker-compose restart
# View logs docker-compose logs -f gateway
# Clean restart (removes volumes) docker-compose down -v docker-compose up -d
What's Next?
After installation, continue with these guides
Was this page helpful?
