Skip to content

Commit

Permalink
Fix docker migration script example (go-shiori#451)
Browse files Browse the repository at this point in the history
The example docker command given was invalid, as `docker run` operates on images, not containers.
  • Loading branch information
kaimoe authored Jul 23, 2022
1 parent cba5046 commit f5652a5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions docs/Usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ If this is a fresh install or you're upgrading versions, you'll need to migrate
changes for Shiori to work properly:

- If you're using the binary version: `shiori migrate`
- If you're running the containerized version: `docker run containername shiori migrate` (you can also start a shell on the running container and perform the migration there).
- Remember to change `containername` with the name you gave to your container.
- If you're running the containerized version: `docker run --rm -v $(pwd):/shiori ghcr.io/go-shiori/shiori migrate` (you can also start a shell on the running container and perform the migration there).

## Using Command Line Interface

Expand Down

0 comments on commit f5652a5

Please sign in to comment.