专属域名
文档搜索
轩辕助手
Run助手
邀请有礼
返回顶部
快速返回页面顶部
收起
收起工具栏
轩辕镜像 官方专业版
轩辕镜像 官方专业版轩辕镜像 官方专业版官方专业版
首页个人中心搜索镜像

交易
充值流量我的订单
工具
提交工单镜像收录一键安装
Npm 源Pip 源Homebrew 源
帮助
常见问题
其他
关于我们网站地图

官方QQ群: 1072982923

xthursdayx/yacreaderlibrary-server-docker Docker 镜像 - 轩辕镜像

yacreaderlibrary-server-docker
xthursdayx/yacreaderlibrary-server-docker
xthursdayx
Headless version of the YACReaderLibraryServer
12 收藏0 次下载
📦 一套镜像服务,解决研发 / 测试 / 生产三套环境
镜像简介版本下载
📦 一套镜像服务,解决研发 / 测试 / 生产三套环境

YACReaderLibraryServer Docker

![Docker Builds]([] !Docker Pulls !Docker Pulls ![Docker Image Size (tag)]([] ![Docker Image Size (tag)]([] ![GitHub Release]([]

Headless version of the YACReaderLibraryServer, running on a custom base image built with Ubuntu 22.04 LTS cloud image and S6 overlay.

YACReader is the best comic reader and comic manager available, with support for cbr, cbz, zip, and rar comic files.

YACReaderLibraryServer makes it easy to run a home comics server to serve your comics to any device running a YACReader client (including Windows, MacOS, and Linux as well the YACReader iOS app).

Setup Instructions:

You can choose to install one of two versions of the YACReaderLibraryServer docker image, each compiled with a different compression backend - either 7zip or unarr. These two versions are handled via the Docker repository tags xthursdayx/yacreaderlibrary-server-docker:7zip or xthursdayx/yacreaderlibrary-server-docker:unarr.

For the best stability and general quality, it is recommended that you install YACReaderLibraryServer with unarr, so this version is the default installation. It should be noted, however, that as of version 1.0.1, unarr supports fewer formats than 7zip, notably RAR5. There is also some evidence that YACReaderLibraryServer compiled with 7zip may scan and create your comics library(s) faster than the version complied with unarr, so the choice is yours. In practice, the unarr rarely causes issues as the vast majority of comic books use either zip or RAR4 compression, which is handled nicely by this backend, and after the initial library creation, library updates proceed smoothly with either decompression backend.

If you would like to use the default unarr backend, then you do not need to add a tag to xthursdayx/yacreaderlibrary-server-docker since it will default to the latest/unarr tag.

This docker image is also available from the GitHub container registry: ghcr.io/xthursdayx/yacreaderlibrary-server-docker

Supported Architectures

This image supports multiple architectures, specifically x86-64 and arm64, through the use of a docker manifest for multi-platform awareness. You can read more about docker manifests here.

There is a tagged unarr and 7zip version of the image for each supported architecture. Simply pulling xthursdayx/yacreaderlibrary-server-docker:<tag> should retrieve the correct image for your arch, but you can also pull specific arch images via tags.

The architectures supported by this image, and the associated tags are:

ArchitectureTag
x86-64latest/unarr
x86-647zip
x86-64unarr-amd64
x86-647zip-amd64
arm64unarr-arm64v8
arm647zip-arm64v8

Here are some examples to help you get started creating a container from this image. If you are an UNRAID user you can access my UNRAID YACReaderLibraryServer template in Community Apps.

Docker CLI
bash
docker run -d \
  --name=YACReaderLibraryServer \
  -e PUID=99 \
  -e PGID=100 \
  -e TZ=America/New_York \
  -p 8080:8080 \
  -v /path/to/config:/config \
  -v /path/to/comic:/comics \
  --restart unless-stopped \
  xthursdayx/yacreaderlibrary-server-docker:[tag]
docker-compose
yaml
---
version: "3"
services:
  yacreaderlibrary-server-docker:
    container_name: YACReaderLibraryServer
    image: xthursdayx/yacreaderlibrary-server-docker:[tag]
    environment:
      - PUID=99
      - PGID=100
      - TZ=America/New_York
    volumes:
      - /path/to/config:/config
      - /path/to/comics:/comics
    ports:
      - 8080:8080
    restart: unless-stopped
Parameters

Container images are configured using parameters passed at runtime (such as those listed above). These parameters are separated by a colon and indicate <external>:<internal> respectively. For example, -p 8080:80 would expose port 80 from inside the container to be accessible from the host's IP on port 8080 outside the container. You can change the external/host port and volume mappings to suit your needs.

ParameterFunction
-p 8080HTTP access to YACReaderLibraryServer.
-e PUID=99for UserID - see below for more information.
-e PGID=100for GroupID - see below for more information.
-e TZ=America/New_YorkSpecify a timezone to use, e.g. America/New_York.
-v /configDirectory where YACReaderLibraryServer's configuration and log files will be stored.
-v /comicsThe directory where YACReaderLibraryServer will look for your comics.
tag(Optional) The docker tag will pull your chosen version YACReaderLibraryServer, the primary options are pzip or unarr/latest (default), though arch and release specific tags are also available.
User / Group Identifiers

When using volumes (-v flags) permissions issues can arise between the host OS and the container, you can avoid this by specifying the user PUID and group PGID.

Ensure any mapped volume directories on your host machine are owned by the same user you specify and you will avoid any permissions issues.

In this instance PUID=99 and PGID=100, to find yours using the following command:

bash
  $ id <username> # Replace with your username
    uid=99(nobody) gid=100(users) groups=100(users)

Usage Instructions:

To create a new YACReader comics library run the following command from the CLI on your host machine, changing <library-name> to whatever you want your library to be called:
docker exec YACReaderLibraryServer YACReaderLibraryServer create-library <library-name> /comics
To add an existing YACReader library:
docker exec YACReaderLibraryServer YACReaderLibraryServer add-library <library-name> /comics
To update your YACReader library (e.g. when you've added new comics):
docker exec YACReaderLibraryServer YACReaderLibraryServer update-library /comics
To list all existing YACReader libraries
docker exec YACReaderLibraryServer YACReaderLibraryServer list-libraries
To remove a YACReader library
docker exec YACReaderLibraryServer YACReaderLibraryServer remove-library <library-name>

Accessing YACReaderLibraryServer

You can access your YACReaderLibraryServer by pointing your YACReader app to:

  • [***] (Replace SERVERIP with the correct value).

Please note: YACReaderLibraryServer does not have authentication installed by default, so it is not advisable to expose your server outside of your home network. If you wish to be able to access YACReaderLibraryServer from outside your local network please use a reverse ssl proxy, such as NGINX with an .htaccess file, or a locally-hosted , such as Open to access your local network.

Updating Info

This image is static, versioned, and requires an image update and container recreation to update version of YACReaderLibraryServer running inside.

Here are the instructions for updating containers:

Via Docker Compose
  • Update all images: docker-compose pull
    • or update a single image: docker-compose pull YACReaderLibraryServer
  • Let compose update all containers as necessary: docker-compose up -d
    • or update a single container: docker-compose up -d YACReaderLibraryServer
  • You can also remove the old dangling images: docker image prune
Via Docker Run
  • Update the image: docker pull xthursdayx/YACReaderLibraryServer
  • Stop the running container: docker stop YACReaderLibraryServer
  • Delete the container: docker rm YACReaderLibraryServer
  • Recreate a new container with the same docker run parameters as described above (if mapped correctly, your YACReaderLibraryServer database and library will be preserved).
  • You can also remove the old dangling images: docker image prune
Image Update Notifications - Diun (Docker Image Update Notifier)
  • You can use Diun for update notifications. Other tools that automatically update containers unattended are not recommended.

Versions

  • 15.02.24: - Roll aarch64 images back to QT5 to temporarily fix CI build issue.

  • 15.02.24: - Update YACReader to 9.14.2, swith p7zip branch to 7zip and update to QT6 for the 7zip image.

  • 06.02.24: - Update YACReader to 9.14.1 and update to QT6 for the unarr image.

  • 28.07.23: - Update YACReader to 9.13.1 and depreciated 32-bit Arm(hf) image.

  • 25.04.23: - Update YACReader to 9.12.0.

  • 04.04.23: - Update YACReader to 9.11.0 and fix CI build process.

  • 02.12.22: - Update YACReader to 9.10.0 and upgrade to s6v3.

  • 27.10.22: - Updated to YACReaderLibrary 9.9.2 and rebase to Jammy.

  • 16.11.21: - Streamlined multi-arch support and docker image push workflow.

  • 20.06.21: - Added multi-arch support.

  • 14.06.21: - Switched to monorepo with unarr and p7zip versions.

  • 11.06.21: - Bug fix and patch on main p7zip branch.

  • 10.06.21: - Complete rebuild and initial version.

***s

If you appreciate my work please *** buying me a coffee, cheers! 😁

查看更多 yacreaderlibrary-server-docker 相关镜像 →
docker/dtr-notary-server logo
docker/dtr-notary-server
暂无描述
10M+ pulls
上次更新:未知
docker/dockerfile logo
docker/dockerfile
这些是官方提供的Dockerfile前端镜像,主要功能是支持通过BuildKit构建Dockerfile,作为构建流程中的关键前端工具,能够有效配合BuildKit提升Dockerfile的构建效率、安全性与灵活性,为开发者提供官方认可的标准化构建方案,适用于各类基于Docker的应用开发与部署场景,确保构建过程的稳定可靠及操作便捷性。
124500M+ pulls
上次更新:未知
docker/kube-compose-api-server logo
docker/kube-compose-api-server
暂无描述
110M+ pulls
上次更新:未知
linuxserver/code-server logo
linuxserver/code-server
linuxserver/code-server是VS Code服务器版Docker镜像,可在浏览器中运行完整VS Code开发环境,无需本地安装即可跨设备访问。支持全部VS Code扩展、代码同步与终端功能,适配远程开发、团队协作或低配置设备场景。镜像经linuxserver优化,兼容ARM/AMD架构,内置持久化存储与安全配置,开箱即用,轻松打造云端IDE,提升开发灵活性与效率。
72850M+ pulls
上次更新:未知
mailserver/docker-mailserver logo
mailserver/docker-mailserver
一个全栈且简单易用的邮件服务器,支持SMTP、IMAP协议,集成LDAP、反垃圾邮件及反病毒等功能。
25810M+ pulls
上次更新:未知
docker/dockerfile-copy logo
docker/dockerfile-copy
此Docker镜像已被弃用。
150M+ pulls
上次更新:未知

轩辕镜像配置手册

探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式

登录仓库拉取

通过 Docker 登录认证访问私有仓库

Linux

在 Linux 系统配置镜像服务

Windows/Mac

在 Docker Desktop 配置镜像

Docker Compose

Docker Compose 项目配置

K8s Containerd

Kubernetes 集群配置 Containerd

K3s

K3s 轻量级 Kubernetes 镜像加速

Dev Containers

VS Code Dev Containers 配置

MacOS OrbStack

MacOS OrbStack 容器配置

宝塔面板

在宝塔面板一键配置镜像

群晖

Synology 群晖 NAS 配置

飞牛

飞牛 fnOS 系统配置镜像

极空间

极空间 NAS 系统配置服务

爱快路由

爱快 iKuai 路由系统配置

绿联

绿联 NAS 系统配置镜像

威联通

QNAP 威联通 NAS 配置

Podman

Podman 容器引擎配置

Singularity/Apptainer

HPC 科学计算容器配置

其他仓库配置

ghcr、Quay、nvcr 等镜像仓库

专属域名拉取

无需登录使用专属域名

需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单

镜像拉取常见问题

轩辕镜像免费版与专业版有什么区别?

免费版仅支持 Docker Hub 访问,不承诺可用性和速度;专业版支持更多镜像源,保证可用性和稳定速度,提供优先客服响应。

轩辕镜像支持哪些镜像仓库?

专业版支持 docker.io、gcr.io、ghcr.io、registry.k8s.io、nvcr.io、quay.io、mcr.microsoft.com、docker.elastic.co 等;免费版仅支持 docker.io。

流量耗尽错误提示

当返回 402 Payment Required 错误时,表示流量已耗尽,需要充值流量包以恢复服务。

410 错误问题

通常由 Docker 版本过低导致,需要升级到 20.x 或更高版本以支持 V2 协议。

manifest unknown 错误

先检查 Docker 版本,版本过低则升级;版本正常则验证镜像信息是否正确。

镜像拉取成功后,如何去掉轩辕镜像域名前缀?

使用 docker tag 命令为镜像打上新标签,去掉域名前缀,使镜像名称更简洁。

查看全部问题→

用户好评

来自真实用户的反馈,见证轩辕镜像的优质服务

用户头像

oldzhang

运维工程师

Linux服务器

5

"Docker访问体验非常流畅,大镜像也能快速完成下载。"

轩辕镜像
镜像详情
...
xthursdayx/yacreaderlibrary-server-docker
官方博客Docker 镜像使用技巧与技术博客
热门镜像查看热门 Docker 镜像推荐
一键安装一键安装 Docker 并配置镜像源
咨询镜像拉取问题请 提交工单,官方技术交流群:1072982923
轩辕镜像面向开发者与科研用户,提供开源镜像的搜索和访问支持。所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
咨询镜像拉取问题请提交工单,官方技术交流群:
轩辕镜像面向开发者与科研用户,提供开源镜像的搜索和访问支持。所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
官方邮箱:点击复制邮箱
©2024-2026 源码跳动
官方邮箱:点击复制邮箱Copyright © 2024-2026 杭州源码跳动科技有限公司. All rights reserved.