Bytebase logo

Bytebase

Collaborative database management tool offering schema collaboration, version control, and an embedded SQL Editor with access control.

Getting Started

  1. Create a folder and move to the folder
    mkdir bytebase && cd bytebase
    
  2. Create docker-compose.yml file with the following content:
    docker-compose.yml
    services:
      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:
    
  3. Run the following command to start the container
    docker compose up -d
    
  4. Open the browser and go to http://localhost:8080 to access the Bytebase.