> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bytebase.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Step 1: Deploy with Docker

<Card title="Tutorial: First Schema Change in 5 Minutes" icon="graduation-cap" href="/tutorials/first-schema-change" horizontal />

It's recommended to [run Bytebase with Docker](/get-started/self-host/deploy-with-docker) which is the easiest way to get you started.

Run the following command to start Bytebase on container port `8080` and map it to localhost port `8080`.

```bash theme={null}
docker run --rm --init \
  --name bytebase \
  --publish 8080:8080 --pull always \
  --volume ~/.bytebase/data:/var/opt/bytebase \
  bytebase/bytebase:latest
```

Visit Bytebase at [localhost:8080](http://localhost:8080/).

<Tip>
  If you've run Bytebase before, you can reset all data by running this command:

  ```bash theme={null}
  rm -rf ~/.bytebase/data
  ```
</Tip>
