Skip to content

Commit

Permalink
Fix indentation in docker-compose and fix image name (#137)
Browse files Browse the repository at this point in the history
* Fix indentation for volume mount in docker-compose

* Change docker image name to the ghcr one for TrueNAS Scale
  • Loading branch information
harshithmohan authored Oct 19, 2024
1 parent 69c17ef commit 64944d6
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 @@ -106,7 +106,7 @@ environment:
ports:
- "${userInput.value.port}:8111"
volumes:
${userInput.value.volumes.map((volume) => `- "${volume}"`).join("\n ")}`;
${userInput.value.volumes.map((volume) => `- "${volume}"`).join("\n ")}`;
});
return {
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/installing-shoko-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ Follow these steps to set up a Shoko server using a custom app:
1. Navigate to **Apps -> Discover Apps -> Custom App**.
2. Set the **Application Name** to your preference.
3. Configure **Container Images**:
- Image Repository: `shokoanime/server`
- Image Repository: `ghcr.io/shokoanime/server`
- Image Tag: `latest`
4. Set **Container Environment Variables**:
- These settings ensure Shoko runs as the built-in `Apps` user. Verify this user has access to your media folder.
Expand Down

0 comments on commit 64944d6

Please sign in to comment.