This example runs Buildbot master with a persistent data volume.
See Docker installation: Docker
services:
master:
image: buildbot/buildbot-master:latest
container_name: buildbot-master
restart: unless-stopped
ports:
- "8010:8010"
volumes:
- buildbot_master:/var/lib/buildbot
volumes:
buildbot_master:
Start the stack:
docker compose up -d