Fix docker run

This commit is contained in:
Mike Nolan 2023-10-29 15:27:14 -05:00
parent 82d30608f0
commit 12b3c36249
1 changed files with 1 additions and 1 deletions

View File

@ -17,5 +17,5 @@ Just put any credentials then remember them
# Run in docker
```bash
$ docker build -t simplenotesserver:latest .
$ docker run -d --restart=unless-stopped -v ./data:/App/out/data -p 19428:19428 simplenotesserver:latest
$ docker run -d --restart=unless-stopped -v ./data:/App/data -p 19428:19428 simplenotesserver:latest
```