Self-hosted print archive and management system for Bambu Lab 3D printers.
No cloud dependency. Complete privacy. Full control.
mkdir bambuddy && cd bambuddy
curl -O https://raw.githubusercontent.com/maziggy/bambuddy/main/docker-compose.yml
docker compose up -d
Open http://localhost:8000 and add your printer.
Requirements: Bambu Lab printer with Developer Mode enabled, on the same local network.
| Architecture | Tag |
|---|---|
| x86-64 (Intel/AMD) | amd64 |
| arm64 (Raspberry Pi 4/5) | arm64 |
| Variable | Default | Description |
|---|---|---|
TZ |
UTC |
Timezone (e.g. America/New_York, Europe/Berlin) |
PORT |
8000 |
Web UI port |
PUID |
1000 |
User ID for file permissions |
PGID |
1000 |
Group ID for file permissions |
DEBUG |
false |
Enable debug logging |
| Path | Purpose |
|---|---|
/app/data |
Database, archived prints, thumbnails |
/app/logs |
Application logs |
services:
bambuddy:
image: maziggy/bambuddy:latest
container_name: bambuddy
network_mode: host
environment:
- TZ=America/New_York
- PUID=1000
- PGID=1000
volumes:
- bambuddy_data:/app/data
- bambuddy_logs:/app/logs
restart: unless-stopped
volumes:
bambuddy_data:
bambuddy_logs:
macOS/Windows: Docker Desktop doesn't support
network_mode: host. Replace it withports: ["8000:8000"]and add printers manually by IP.
docker compose pull && docker compose up -d
Beta builds with the latest fixes are pushed regularly to the same beta version tag:
# Pull the current beta
docker pull maziggy/bambuddy:0.2.2b1
Use Watchtower to automatically update when new daily builds are pushed.
Note: Beta builds use version tags like
0.2.2b1— they are never tagged aslatest. Your stable installation won't auto-update to a beta unless you explicitly pull a beta tag.
| Series | Models | Status |
|---|---|---|
| H2 | H2C, H2D, H2D Pro, H2S | Tested |
| X1 | X1 Carbon, X1E | Tested |
| P1 | P1P, P1S | Compatible |
| P2 | P2S | Compatible |
| A1 | A1, A1 Mini | Compatible |
All printers require Developer Mode enabled for LAN access.
MIT License - see LICENSE for details.