mirror of
https://github.com/Suwayomi/docker-tachidesk.git
synced 2025-12-10 06:42:12 +01:00
Initial commit
This commit is contained in:
57
README.md
Normal file
57
README.md
Normal file
@@ -0,0 +1,57 @@
|
||||
# Tachidesk-docker
|
||||
|
||||
| Status | Stable |Preview |
|
||||
|:-:|:-:|:-:|
|
||||
| [](https://github.com/suwayomi/docker-tachidesk/actions/workflows/build_container_images.yml) [](https://github.com/orgs/suwayomi/packages/container/package/tachidesk) | [](https://github.com/orgs/suwayomi/packages/container/package/tachidesk/) | [](https://github.com/orgs/suwayomi/packages/container/package/tachidesk) |
|
||||
|
||||
Run [Tachidesk](https://github.com/Suwayomi/Tachidesk) server inside docker container as non-root user. The server will be running on http://localhost:4567 open this url in your browser.
|
||||
|
||||
Docker Releases - https://github.com/suwayomi/docker-tachidesk/pkgs/container/tachidesk
|
||||
|
||||
Dockerfile - https://github.com/suwayomi/docker-tachidesk
|
||||
|
||||
_**Tachidesk data location - /home/suwayomi/.local/share/Tachidesk**_
|
||||
|
||||
Docker images are mutli-arch (linux/386, linux/amd64, linux/arm/v6, linux/arm/v7, linux/arm64, linux/ppc64le, linux/s390x) and has very small size based on alpine linux.
|
||||
|
||||
Log file location - /home/suwayomi/.local/share/Tachidesk/logfile.log
|
||||
|
||||
# docker Commands
|
||||
|
||||
Expose to localhost ip
|
||||
|
||||
docker run -p 127.0.0.1:4567:4567 ghcr.io/suwayomi/tachidesk
|
||||
|
||||
Expose to specific ip
|
||||
|
||||
docker run -p 192.168.x.x:4567:4567 ghcr.io/suwayomi/tachidesk
|
||||
|
||||
Expose to all ips
|
||||
|
||||
docker run -p 4567:4567 ghcr.io/suwayomi/tachidesk
|
||||
|
||||
Change the default UTC timezone. Use TZ database name from [Timezone list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones)
|
||||
|
||||
docker run -e "TZ=Europe/London" -p 127.0.0.1:4567:4567 ghcr.io/suwayomi/tachidesk
|
||||
|
||||
For Tachidesk Preview version
|
||||
|
||||
docker run -p 127.0.0.1:4567:4567 ghcr.io/suwayomi/tachidesk:preview
|
||||
|
||||
Persistent data of tachidesk on subsequent run
|
||||
|
||||
docker run -p 127.0.0.1:4567:4567 -v <folder path>:/./home/suwayomi/.local/share/Tachidesk ghcr.io/suwayomi/tachidesk
|
||||
|
||||
For Specific Tachidesk stable version (from v0.3.9 onwards)
|
||||
|
||||
docker run -p 127.0.0.1:4567:4567 ghcr.io/suwayomi/tachidesk:v0.3.9
|
||||
|
||||
# Credit
|
||||
|
||||
[Tachidesk](https://github.com/Suwayomi/Tachidesk) is licensed under `MPL v. 2.0`.
|
||||
|
||||
# License
|
||||
|
||||
This Source Code Form is subject to the terms of the Mozilla Public
|
||||
License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
Reference in New Issue
Block a user