本站面向开发者与科研用户,提供开源镜像的搜索和下载加速服务。
所有镜像均来源于原始开源仓库,本站不存储、不修改、不传播任何镜像内容。

temporal-server Docker 镜像下载 - 轩辕镜像

temporal-server 镜像详细信息和使用指南

temporal-server 镜像标签列表和版本信息

temporal-server 镜像拉取命令和加速下载

temporal-server 镜像使用说明和配置指南

Docker 镜像加速服务 - 轩辕镜像平台

国内开发者首选的 Docker 镜像加速平台

极速拉取 Docker 镜像服务

相关 Docker 镜像推荐

热门 Docker 镜像下载

temporal-server
ubuntu/temporal-server

temporal-server 镜像详细信息

temporal-server 镜像标签列表

temporal-server 镜像使用说明

temporal-server 镜像拉取命令

Docker 镜像加速服务

轩辕镜像平台优势

镜像下载指南

相关 Docker 镜像推荐

Temporal Server, enabling the execution of Workflows in a resilient manner.
0 次下载activeubuntu镜像

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 TagsSupported untilCurrentlyArchitectures
1.23.1-24.04_edge1-24.04_edge, 1.23-24.04_edge08/2025temporal server 1.23.1 on Ubuntu 24.04 LTSamd64
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

ParameterDescription
-e TEMPORAL_ROOT=/etc/temporalRoot directory of Temporal execution environment
-e TEMPORAL_CONFIG_DIR=configConfig directory path relative to the Temporal root
-e TEMPORAL_ENVIRONMENT=developmentRun time Temporal environment
-e TEMPORAL_AVAILABILITY_ZONE=some-zoneTemporal's availability zone
-e TEMPORAL_ALLOW_NO_AUTH=falseBoolean to allow no authorizer
-p 6933:6933Expose Temporal's fronted service membership endpoint
-p 6934:6934Expose Temporal's history service membership endpoint
-p 6935:6935Expose Temporal's matching service membership endpoint
-p 6939:6939Expose Temporal's worker service membership endpoint
-p 7233:7233Expose Temporal's frontend service GRPC endpoint
-p 7243:7243Expose Temporal's frontend service HTTP endpoint
-p 7234:7234Expose Temporal's history service GRPC endpoint
-p 7235:7235Expose Temporal's matching service GRPC endpoint
-p 7239:7239Expose Temporal's worker service GRPC endpoint
-v /path/to/temporal/config.yaml:/etc/temporal/config/config.yamlLocal configuration file for Temporal server
-e SQL_HOST=1.2.3.4Hostname or IP address of SQL host to connect to with temporal-sql-tool
-e SQL_PORT=3306Port of SQL host to connect to with temporal-sql-tool
-e SQL_USER=mysqlUser name used for authentication when connecting to SQL host with temporal-sql-tool
-e SQL_PASSWORD=supersecretpasswordPassword used for authentication when connecting to SQL host with temporal-sql-tool
-e SQL_DATABASE=temporalName of SQL database used with temporal-sql-tool
-e SQL_PLUGIN=mysqlName of the SQL plugin for temporal-sql-tool
-e SQL_CONNECT_ATTRIBUTESSQL connect attributes for temporal-sql-tool
-e SQL_TLS=trueEnable TLS over SQL connection with temporal-sql-tool
-e SQL_TLS_CERT_FILE=/path/to/client.crtSQL TLS client certificate path for temporal-sql-tool
-e SQL_TLS_KEY_FILE=/path/to/client.keySQL TLS client key path for temporal-sql-tool
-e SQL_TLS_CA_FILE=/path/to/client-ca.crtSQL TLS client CA file for temporal-sql-tool
-e SQL_TLS_SERVER_NAME=test-server-nameOverride for target server name with temporal-sql-tool
-e SQL_TLS_DISABLE_HOST_VERIFICATION=trueDisable TLS host name verifaction with temporal-sql-tool (tls must be enabled)
-e TEMPORAL_CLI_ADDRESS=1.2.3.4:5555host:port for Temporal frontend service used by tdbg
-e TEMPORAL_CLI_NAMESPACE=testnamespaceTemporal workflow namespace used by tdbg
-e TEMPORAL_CONTEXT_TIMEOUT=10Optional timeout for context of RPC calls in seconds for tdbg
-e TEMPORAL_CLI_TLS_CERT=/path/to/tls.certPath to x509 certificate used by tdbg
-e TEMPORAL_CLI_TLS_KEY=/path/to/tls.keyPath to private key used by tdbg
-e TEMPORAL_CLI_TLS_CA=/path/to/server-ca.crtPath to server CA certificate used by tdbg
-e TEMPORAL_CLI_TLS_DISABLE_HOST_VERFICATION=trueDisable 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.

TrackVersionEOLUpgrade Path
track

轩辕镜像下载加速使用手册

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

登录方式进行 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