Bytebase provides a comprehensive platform for managing database changes and security across your entire engineering organization. It helps teams standardize schema migrations and data modifications through a structured process that includes review workflows, automated checks, and optional GitOps integration. This approach brings the principles of CI/CD to your database, ensuring consistency and safety from development to production.
The platform is built with security at its core, offering granular control over data access and operations. Key capabilities include:
services:
bytebase:
image: bytebase/bytebase:latest
container_name: bytebase
init: true
restart: unless-stopped
ports:
- "5678:8080"
volumes:
- ./bytebase-data:/var/opt/bytebase
command:
- --data
- /var/opt/bytebase
- --port
- "8080"
- --external-url
- ${BYTEBASE_EXTERNAL_URL}
healthcheck:
test: ["CMD-SHELL", "curl --fail http://localhost:8080/healthz || exit 1"]
interval: 5m
timeout: 60s
# The external URL where Bytebase will be accessible (e.g., https://bytebase.yourdomain.com)
BYTEBASE_EXTERNAL_URL=http://localhost:5678
Auto-fetched about 18 hours ago
Auto-fetched about 18 hours ago