# 启动Deltaboard

## 通过Docker镜像启动Deltaboard

推荐使用Deltaboard的Docker镜像来进行部署

### 下载镜像

```
$ docker pull deltampc/deltaboard:0.8.3
```

### 初始化配置

deltaboard节点保存的数据包括配置文件、保存的用户数据、系统运行日志等，在启动节点服务之前，需要先初始化配置：

首先，新建文件夹deltaboard，作为节点启动的根目录：

```
$ mkdir deltaboard
```

在节点根目录中，输入命令：

```
$ cd deltaboard
$ docker run -it --rm -v ${PWD}:/app deltampc/deltaboard:0.8.3 init
```

运行命令后，会在根目录`deltaboard`中，新建文件夹`config, data，db`，其中，`config`文件夹用来存放节点的配置文件，data文件夹用来存放节点保存的用户数据，比如JupyterLab中的代码和数据等，db文件夹用来存放deltaboard使用的sqlite数据库文件。

### 启动节点服务

```
$ docker run -d --name=deltaboard -v ${PWD}:/app -p 8090:8090 deltampc/deltaboard:0.8.3
```

### **访问Deltaboard**

浏览器访问 <http://localhost:8090>

![](/files/-MhXVV7bk952cy3G6vJE)

看到这个界面，说明Deltaboard已经启动完成。

Deltaboard的默认账号，用户名admin，密码也是admin。登录进去后，可在个人中心修改密码。


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.deltampc.com/network-deployment/start-deltaboard.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
