Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file modified .editorconfig
100755 → 100644
Empty file.
Empty file modified .github/CONTRIBUTING.md
100755 → 100644
Empty file.
Empty file modified .github/FUNDING.yml
100755 → 100644
Empty file.
Empty file modified .github/ISSUE_TEMPLATE/config.yml
100755 → 100644
Empty file.
Empty file modified .github/ISSUE_TEMPLATE/issue.bug.yml
100755 → 100644
Empty file.
Empty file modified .github/ISSUE_TEMPLATE/issue.feature.yml
100755 → 100644
Empty file.
Empty file modified .github/workflows/call_issue_pr_tracker.yml
100755 → 100644
Empty file.
Empty file modified .github/workflows/call_issues_cron.yml
100755 → 100644
Empty file.
Empty file modified .github/workflows/external_trigger.yml
100755 → 100644
Empty file.
Empty file modified .github/workflows/external_trigger_scheduler.yml
100755 → 100644
Empty file.
Empty file modified .github/workflows/greetings.yml
100755 → 100644
Empty file.
Empty file modified .github/workflows/package_trigger_scheduler.yml
100755 → 100644
Empty file.
Empty file modified .github/workflows/permissions.yml
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN \
/app/kavita --strip-components=1 \
--no-same-owner && \
chmod +x /app/kavita/Kavita && \
cp /app/kavita/config/appsettings.json /defaults/ && \
cp /app/kavita/config/appsettings-init.json /defaults/ && \
rm -rf /app/kavita/config && \
ln -s /config /app/kavita/config && \
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN \
/app/kavita --strip-components=1 \
--no-same-owner && \
chmod +x /app/kavita/Kavita && \
cp /app/kavita/config/appsettings.json /defaults/ && \
cp /app/kavita/config/appsettings-init.json /defaults/ && \
rm -rf /app/kavita/config && \
ln -s /config /app/kavita/config && \
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
Expand Down
Empty file modified LICENSE
100755 → 100644
Empty file.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64

## Versions

* **05.07.25:** - Update init for version 0.8.7 compatibility.
* **10.07.24:** - Rebase to Ubuntu Noble.
* **12.08.23:** - Fix app file perms to prevent high uid.
* **07.08.23:** - Initial Release.
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ init_diagram: |
"kavita:latest" <- Base Images
# changelog
changelogs:
- {date: "05.07.25:", desc: "Update init for version 0.8.7 compatibility."}
- {date: "10.07.24:", desc: "Rebase to Ubuntu Noble."}
- {date: "12.08.23:", desc: "Fix app file perms to prevent high uid."}
- {date: "07.08.23:", desc: "Initial Release."}
Empty file modified root/donate.txt
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion root/etc/s6-overlay/s6-rc.d/init-kavita-config/run
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# shellcheck shell=bash

if [[ ! -f "/config/appsettings.json" ]]; then
cp /defaults/appsettings.json /config/
cp /defaults/appsettings-init.json /config/
fi

# permissions
Expand Down