Skip to content

Commit

Permalink
Merge pull request #133 from ShokoAnime/docker-image
Browse files Browse the repository at this point in the history
Refer to ghcr docker images instead of dockerhub
  • Loading branch information
harshithmohan authored Oct 13, 2024
2 parents eafebd9 + c5f0d92 commit aa99d21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/.vitepress/components/DockerCompose.vue
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ services:
shoko_server:
shm_size: 256m
container_name: ${userInput.value.container}
image: shokoanime/server:latest
image: ghcr.io/shokoanime/server:latest
restart: always
environment:
- "PUID=${userInput.value.puid}"
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/running-shoko-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ users will need to execute a command to start the container. While the exact com
setup, it should resemble something like this:

```sh [Example Command]
docker run -d --name shokoserver --restart always -p 8111:8111 -v "$HOME/.shoko:/home/shoko/.shoko" -v "/path/to/anime:/mnt/anime" -v "/path/to/import:/mnt/import" -e PUID=$UID -e PGID=$GID shokoanime/server:latest
docker run -d --name shokoserver --restart always -p 8111:8111 -v "$HOME/.shoko:/home/shoko/.shoko" -v "/path/to/anime:/mnt/anime" -v "/path/to/import:/mnt/import" -e PUID=$UID -e PGID=$GID ghcr.io/shokoanime/server:latest
```

With Shoko Server running, open your browser and navigate to http://localhost:8111/ to access the Web UI. If Shoko
Expand Down

0 comments on commit aa99d21

Please sign in to comment.