|
@@ -136,7 +136,7 @@ The entry point is set when building the Docker image: `ENTRYPOINT ["/opt/siyuan
|
|
More parameters can refer to `--help`. The following is an example of a startup command:
|
|
More parameters can refer to `--help`. The following is an example of a startup command:
|
|
|
|
|
|
```
|
|
```
|
|
-docker run -v workspace_dir_host:workspace_dir_container -p 6806:6806 b3log/siyuan --workspace=workspace_dir_container --accessAuthCode=xxx
|
|
|
|
|
|
+docker run -d -v workspace_dir_host:workspace_dir_container -p 6806:6806 b3log/siyuan --workspace=workspace_dir_container --accessAuthCode=xxx
|
|
```
|
|
```
|
|
|
|
|
|
* `workspace_dir_host`: The workspace folder path on the host
|
|
* `workspace_dir_host`: The workspace folder path on the host
|
|
@@ -146,7 +146,7 @@ docker run -v workspace_dir_host:workspace_dir_container -p 6806:6806 b3log/siyu
|
|
To simplify, it is recommended to configure the workspace folder path to be consistent on the host and container, such as: `workspace_dir_host` and `workspace_dir_container` are configured as `/siyuan/workspace`, the corresponding startup commands is:
|
|
To simplify, it is recommended to configure the workspace folder path to be consistent on the host and container, such as: `workspace_dir_host` and `workspace_dir_container` are configured as `/siyuan/workspace`, the corresponding startup commands is:
|
|
|
|
|
|
```
|
|
```
|
|
-docker run -v /siyuan/workspace:/siyuan/workspace -p 6806:6806 -u 1000:1000 b3log/siyuan --workspace=/siyuan/workspace/ --accessAuthCode=xxx
|
|
|
|
|
|
+docker run -d -v /siyuan/workspace:/siyuan/workspace -p 6806:6806 -u 1000:1000 b3log/siyuan --workspace=/siyuan/workspace/ --accessAuthCode=xxx
|
|
```
|
|
```
|
|
|
|
|
|
#### User permissions
|
|
#### User permissions
|