Bytebase
Collaborative database management tool offering schema collaboration, version control, and an embedded SQL Editor with access control.
Getting Started
- Create a folder and move to the folder
mkdir bytebase && cd bytebase
- Create
docker-compose.yml
file with the following content:docker-compose.ymlservices: bytebase: container_name: bytebase image: bytebase/bytebase:3.4.0 restart: unless-stopped init: true ports: - "8080:8080" volumes: - bytebase_data:/var/opt/bytebase volumes: bytebase_data:
- Run the following command to start the container
docker compose up -d
- Open the browser and go to http://localhost:8080 to access the Bytebase.