本站支持搜索的镜像仓库:Docker Hub、gcr.io、ghcr.io、quay.io、k8s.gcr.io、registry.gcr.io、elastic.co、mcr.microsoft.com
temporal-server Docker 镜像下载 - 轩辕镜像
temporal-server 镜像详细信息和使用指南
temporal-server 镜像标签列表和版本信息
temporal-server 镜像拉取命令和加速下载
temporal-server 镜像使用说明和配置指南
Docker 镜像加速服务 - 轩辕镜像平台
国内开发者首选的 Docker 镜像加速平台
极速拉取 Docker 镜像服务
相关 Docker 镜像推荐
热门 Docker 镜像下载
temporal-server 镜像详细信息
temporal-server 镜像标签列表
temporal-server 镜像使用说明
temporal-server 镜像拉取命令
Docker 镜像加速服务
轩辕镜像平台优势
镜像下载指南
相关 Docker 镜像推荐
temporal-server 镜像详细说明
temporal-server 使用指南
temporal-server 配置说明
temporal-server 官方文档
temporal server | Ubuntu
Current temporal server Docker Image from Canonical, based on Ubuntu. Receives security updates and rolls to newer temporal server or Ubuntu release. This repository is free to use and exempted from per-user rate limits.
About temporal server
Temporal is a durable execution platform that enables developers to build scalable applications without sacrificing productivity or reliability. The Temporal server executes units of application logic called Workflows in a resilient manner that automatically handles intermittent failures, and retries failed operations.
Tags and Architectures
!LTS Up to 5 years of free security maintenance on LTS channels.
!ESM Up to 10 years of customer security maintenance from Canonical's restricted repositories.
| Channel Tags | Supported until | Currently | Architectures | |
|---|---|---|---|---|
1.23.1-24.04_edge | 1-24.04_edge, 1.23-24.04_edge | 08/2025 | temporal server 1.23.1 on Ubuntu 24.04 LTS | amd64 |
track_risk |
Channel Tags shows the most stable channel for that track ordered stable, candidate, beta, edge. More risky channels are always implicitly available. So if beta is listed, you can also pull edge. If candidate is listed, you can pull beta and edge. When stable is listed, all four are available. Images are guaranteed to progress through the sequence edge, beta, candidate before stable.
Commercial use and Extended Security Maintenance channels
If your usage includes commercial redistribution, or requires ESM or unavailable channels/versions, please get in touch with the Canonical team (or using ***).
Usage
Launch this image locally:
docker run -d --name temporal-server-container -e TZ=UTC -p 7233:7233 -e SQL_HOST=1.2.3.4 -v /path/to/temporal/config.yaml:/etc/temporal/config/config.yaml ubuntu/temporal-server:1.23.1-24.04_edge
New entrypoint pebble
Please note that the entrypoint of the images in this repository is Pebble, a lightweight service manager. The pebble process launches and supervises the temporal-server process.
Temporal Server Configuration
Temporal server must be provided with a configuration file to start up sucessfully. We do not include any default configurations in the image. Instead, we expect the user to either add a configuration file in the deployed container or mount a volume with the config file in the container.
Some development configuration files can be found in the temporal repository.
The following outlines steps to mount the development configuration files while launching a container:
$ git clone [***] $ docker run -d --name temporal-server-container -e TZ=UTC -p 7233:7233 -v ./temporal/config:/etc/temporal/config -e TEMPORAL_ENVIRONMENT=development-sqlite ubuntu/temporal-server:1.23.1-24.04_edge
Parameters
| Parameter | Description |
|---|---|
-e TEMPORAL_ROOT=/etc/temporal | Root directory of Temporal execution environment |
-e TEMPORAL_CONFIG_DIR=config | Config directory path relative to the Temporal root |
-e TEMPORAL_ENVIRONMENT=development | Run time Temporal environment |
-e TEMPORAL_AVAILABILITY_ZONE=some-zone | Temporal's availability zone |
-e TEMPORAL_ALLOW_NO_AUTH=false | Boolean to allow no authorizer |
-p 6933:6933 | Expose Temporal's fronted service membership endpoint |
-p 6934:6934 | Expose Temporal's history service membership endpoint |
-p 6935:6935 | Expose Temporal's matching service membership endpoint |
-p 6939:6939 | Expose Temporal's worker service membership endpoint |
-p 7233:7233 | Expose Temporal's frontend service GRPC endpoint |
-p 7243:7243 | Expose Temporal's frontend service HTTP endpoint |
-p 7234:7234 | Expose Temporal's history service GRPC endpoint |
-p 7235:7235 | Expose Temporal's matching service GRPC endpoint |
-p 7239:7239 | Expose Temporal's worker service GRPC endpoint |
-v /path/to/temporal/config.yaml:/etc/temporal/config/config.yaml | Local configuration file for Temporal server |
-e SQL_HOST=1.2.3.4 | Hostname or IP address of SQL host to connect to with temporal-sql-tool |
-e SQL_PORT=3306 | Port of SQL host to connect to with temporal-sql-tool |
-e SQL_USER=mysql | User name used for authentication when connecting to SQL host with temporal-sql-tool |
-e SQL_PASSWORD=supersecretpassword | Password used for authentication when connecting to SQL host with temporal-sql-tool |
-e SQL_DATABASE=temporal | Name of SQL database used with temporal-sql-tool |
-e SQL_PLUGIN=mysql | Name of the SQL plugin for temporal-sql-tool |
-e SQL_CONNECT_ATTRIBUTES | SQL connect attributes for temporal-sql-tool |
-e SQL_TLS=true | Enable TLS over SQL connection with temporal-sql-tool |
-e SQL_TLS_CERT_FILE=/path/to/client.crt | SQL TLS client certificate path for temporal-sql-tool |
-e SQL_TLS_KEY_FILE=/path/to/client.key | SQL TLS client key path for temporal-sql-tool |
-e SQL_TLS_CA_FILE=/path/to/client-ca.crt | SQL TLS client CA file for temporal-sql-tool |
-e SQL_TLS_SERVER_NAME=test-server-name | Override for target server name with temporal-sql-tool |
-e SQL_TLS_DISABLE_HOST_VERIFICATION=true | Disable TLS host name verifaction with temporal-sql-tool (tls must be enabled) |
-e TEMPORAL_CLI_ADDRESS=1.2.3.4:5555 | host:port for Temporal frontend service used by tdbg |
-e TEMPORAL_CLI_NAMESPACE=testnamespace | Temporal workflow namespace used by tdbg |
-e TEMPORAL_CONTEXT_TIMEOUT=10 | Optional timeout for context of RPC calls in seconds for tdbg |
-e TEMPORAL_CLI_TLS_CERT=/path/to/tls.cert | Path to x509 certificate used by tdbg |
-e TEMPORAL_CLI_TLS_KEY=/path/to/tls.key | Path to private key used by tdbg |
-e TEMPORAL_CLI_TLS_CA=/path/to/server-ca.crt | Path to server CA certificate used by tdbg |
-e TEMPORAL_CLI_TLS_DISABLE_HOST_VERFICATION=true | Disable TLS host name verification for tdbg (tls must be enabled) |
Testing/Debugging
To debug the container:
docker logs -f temporal-server-container
To get an interactive shell:
docker exec -it temporal-server-container /bin/bash
Bugs and feature requests
If you find a bug in our image or want to request a specific feature, please file a bug here:
[***]
Please title the bug "temporal-server: <issue summary>". Make sure to include the digest of the image you are using, from:
docker images --no-trunc --quiet ubuntu/temporal-server:<tag>
Deprecated channels & tags
These channels (tags) are not updated anymore. Please upgrade to newer channels, or reach out if you can't upgrade.
| Track | Version | EOL | Upgrade Path |
|---|---|---|---|
track |
常见问题
免费版仅支持 Docker Hub 加速,不承诺可用性和速度;专业版支持更多镜像源,保证可用性和稳定速度,提供优先客服响应。
免费版仅支持 docker.io;专业版支持 docker.io、gcr.io、ghcr.io、registry.k8s.io、nvcr.io、quay.io、mcr.microsoft.com、docker.elastic.co 等。
当返回 402 Payment Required 错误时,表示流量已耗尽,需要充值流量包以恢复服务。
通常由 Docker 版本过低导致,需要升级到 20.x 或更高版本以支持 V2 协议。
先检查 Docker 版本,版本过低则升级;版本正常则验证镜像信息是否正确。
使用 docker tag 命令为镜像打上新标签,去掉域名前缀,使镜像名称更简洁。
轩辕镜像下载加速使用手册
探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式
登录方式进行 Docker 镜像下载加速教程
通过 Docker 登录方式配置轩辕镜像加速服务,包含7个详细步骤
Linux Docker 镜像下载加速教程
在 Linux 系统上配置轩辕镜像源,支持主流发行版
Windows/Mac Docker 镜像下载加速教程
在 Docker Desktop 中配置轩辕镜像加速,适用于桌面系统
Docker Compose 镜像下载加速教程
在 Docker Compose 中使用轩辕镜像加速,支持容器编排
K8s containerd 镜像下载加速教程
在 k8s 中配置 containerd 使用轩辕镜像加速
宝塔面板 Docker 镜像下载加速教程
在宝塔面板中配置轩辕镜像加速,提升服务器管理效率
群晖 NAS Docker 镜像下载加速教程
在 Synology 群晖NAS系统中配置轩辕镜像加速
飞牛fnOS Docker 镜像下载加速教程
在飞牛fnOS系统中配置轩辕镜像加速
极空间 NAS Docker 镜像下载加速教程
在极空间NAS中配置轩辕镜像加速
爱快路由 ikuai Docker 镜像下载加速教程
在爱快ikuai系统中配置轩辕镜像加速
绿联 NAS Docker 镜像下载加速教程
在绿联NAS系统中配置轩辕镜像加速
威联通 NAS Docker 镜像下载加速教程
在威联通NAS系统中配置轩辕镜像加速
Podman Docker 镜像下载加速教程
在 Podman 中配置轩辕镜像加速,支持多系统
ghcr、Quay、nvcr、k8s、gcr 等仓库下载镜像加速教程
配置轩辕镜像加速9大主流镜像仓库,包含详细配置步骤
专属域名方式进行 Docker 镜像下载加速教程
无需登录即可使用轩辕镜像加速服务,更加便捷高效
需要其他帮助?请查看我们的 常见问题 或 官方QQ群: 13763429