mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 18:12:29 +08:00
18 lines
284 B
Markdown
Vendored
18 lines
284 B
Markdown
Vendored
# Docker
|
|
To run a Docker build:
|
|
|
|
```
|
|
./bin/builder-docker.sh
|
|
```
|
|
|
|
To run the built Docker image:
|
|
|
|
```
|
|
sudo docker run -p 8081:8080 triliumnext/notes:v0.90.6-beta
|
|
```
|
|
|
|
To enter a shell in the Docker container:
|
|
|
|
```
|
|
sudo docker run -it --entrypoint=/bin/sh zadam/trilium:0.63-latest
|
|
``` |