注意:这是 https://hub.docker.com/_/hylang 的 arm32v5 架构构建的“每个架构”仓库——更多信息,请参见官方镜像文档中的“除 amd64 之外的架构?”https://github.com/docker-library/official-images#architectures-other-than-amd64 和官方镜像 FAQ 中的“Git 中的镜像源已更改,现在该怎么办?”https://github.com/docker-library/faq#an-images-source-changed-in-git-now-what%E3%80%82
-** 维护者 **:
https://github.com/hylang/hy
-** 获取帮助的地方 **:
Docker 社区 Slack、Server Fault、Unix & Linux 或 Stack Overflow
Dockerfile 链接(参见 FAQ 中的“‘Shared’ 和 ‘Simple’ 标签有什么区别?”https://github.com/docker-library/faq#whats-the-difference-between-shared-and-simple-tags%E3%80%82%EF%BC%89
https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.14-trixie
https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.14-bookworm
https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.13-trixie
https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.13-bookworm
https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.12-trixie
https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.12-bookworm
https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.11-trixie
https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.11-bookworm
https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.10-trixie
https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.10-bookworm
https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.9-trixie
https://github.com/hylang/docker-hylang/blob/fed7ae62acf5651a05a296ab7396151e8182aa89/dockerfiles-generated/Dockerfile.python3.9-bookworm
1.1.0-python3.14, 1.1-python3.14, 1-python3.14, python3.14, 1.1.0, 1.1, 1, latest:
1.1.0-python3.13, 1.1-python3.13, 1-python3.13, python3.13:
1.1.0-python3.12, 1.1-python3.12, 1-python3.12, python3.12:
1.1.0-python3.11, 1.1-python3.11, 1-python3.11, python3.11:
1.1.0-python3.10, 1.1-python3.10, 1-python3.10, python3.10:
1.1.0-python3.9, 1.1-python3.9, 1-python3.9, python3.9:
-** 提交 issues 的地方 **:
https://github.com/hylang/hy/issues?q=
-** 支持的架构 **:(https://github.com/docker-library/official-images#architectures-other-than-amd64)
https://hub.docker.com/r/amd64/hylang/, https://hub.docker.com/r/arm32v5/hylang/, https://hub.docker.com/r/arm32v6/hylang/, https://hub.docker.com/r/arm32v7/hylang/, https://hub.docker.com/r/arm64v8/hylang/, https://hub.docker.com/r/i386/hylang/, https://hub.docker.com/r/mips64le/hylang/, https://hub.docker.com/r/ppc64le/hylang/, https://hub.docker.com/r/riscv64/hylang/, https://hub.docker.com/r/s390x/hylang/, https://hub.docker.com/r/winamd64/hylang/
-** 已发布镜像 artifact 详情 **:
https://github.com/docker-library/repo-info/blob/master/repos/hylang (https://github.com/docker-library/repo-info/commits/master/repos/hylang)
(镜像元数据、传输大小等)
-** 镜像更新 **:
https://github.com/docker-library/official-images/issues?q=label%3Alibrary%2Fhylang
https://github.com/docker-library/official-images/blob/master/library/hylang (https://github.com/docker-library/official-images/commits/master/library/hylang)
-** 本描述的来源 **:
https://github.com/docker-library/docs/tree/master/hylang (https://github.com/docker-library/docs/commits/master/hylang)
Hy(又名 Hylang)是一种 Lisp 编程语言方言,旨在通过将表达式转换为 Python 的抽象语法树(AST)来与 Python 互操作。类似于 Clojure 将 s-表达式映射到 JVM,Hy 旨在作为 Python 抽象语法的透明 Lisp 前端。Hy 还允许通过编译步骤导入和访问 Python 库(包括标准库)以及 Hy 代码,将两者的数据结构转换为 Python 的 AST。
***.org/wiki/Hy
!https://raw.githubusercontent.com/docker-library/docs/c097f38c6ee48cd***df8cd853a9d806fff429/hylang/logo.png
DockerfiledockerfileFROM arm32v5/hylang:0.10 COPY . /usr/src/myapp WORKDIR /usr/src/myapp CMD [ "hy", "./your-daemon-or-script.hy" ]
然后可以构建并运行 Docker 镜像:
console$ docker build -t my-hylang-app $ docker run -it --rm --name my-running-app my-hylang-app
对于许多简单的单文件项目,编写完整的 Dockerfile 可能不方便。在这种情况下,可以直接使用 Hy Docker 镜像运行 Hy 脚本:
console$ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/myapp -w /usr/src/myapp arm32v5/hylang:0.10 hy your-daemon-or-script.hy
查看此镜像中包含的软件的https://github.com/hylang/hy/blob/master/LICENSE%E3%80%82
与所有 Docker 镜像一样,这些镜像可能还包含其他软件,这些软件可能采用其他许可证(例如基础发行版中的 Bash 等,以及主要软件的任何直接或间接依赖项)。
一些能够自动检测到的额外许可证信息可能位于 https://github.com/docker-library/repo-info/tree/master/repos/hylang 中。
至于任何预构建镜像的使用,镜像用户有责任确保对本镜像的任何使用符合其中包含的所有软件的相关许可证。
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。

探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式
通过 Docker 登录认证访问私有仓库
无需登录使用专属域名
Kubernetes 集群配置 Containerd
K3s 轻量级 Kubernetes 镜像加速
VS Code Dev Containers 配置
Podman 容器引擎配置
HPC 科学计算容器配置
ghcr、Quay、nvcr 等镜像仓库
Harbor Proxy Repository 对接专属域名
Portainer Registries 加速拉取
Nexus3 Docker Proxy 内网缓存
需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单
docker search 限制
站内搜不到镜像
离线 save/load
插件要用 plugin install
WSL 拉取慢
安全与 digest
新手拉取配置
镜像合规机制
manifest unknown
no matching manifest(架构)
invalid tar header(解压)
TLS 证书失败
DNS 超时
域名连通性排查
410 Gone 排查
402 与流量用尽
401 认证失败
429 限流
D-Bus 凭证提示
413 与超大单层
来自真实用户的反馈,见证轩辕镜像的优质服务