[GH-ISSUE #986] [Bug] 9.6版本宝塔的docker编排或者直接docker run后成功运行 ,但是 新建工作流时报错 Unexpected Application Error! Promise.try is not a function TypeError: Promise.try is not a function #676

Closed
opened 2026-03-03 01:05:10 +03:00 by kerem · 3 comments
Owner

Originally created by @hqylwrx on GitHub (Oct 11, 2025).
Original GitHub issue: https://github.com/certimate-go/certimate/issues/986

软件版本 / Release Version

v0.4

缺陷描述 / Description

Unexpected Application Error!
Promise.try is not a function
TypeError: Promise.try is not a function
at http://192.168.0.221:8090/assets/index-DufRquTU.js:577:1138693
at Wk (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:98593)
at sv (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:117294)
at UU (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:111258)
at Rh (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:48035)
at CNe (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:116069)
at Bm (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:115030)
at HU (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:110357)
at O (http://192.168.0.221:8090/assets/index-DufRquTU.js:25:1590)
at MessagePort.$ (http://192.168.0.221:8090/assets/index-DufRquTU.js:25:1949)
💿 Hey developer 👋

You can provide a way better UX than this when your app throws errors by providing your own ErrorBoundary or errorElement prop on your route.

新建工作流报错,请问是什么情况?

另外,指南的编排,命令丢进宝塔的docker编排报错,

version: "3.0"
services:
certimate:
image: certimate/certimate:latest
container_name: certimate
ports:

  • 8090:8090
    volumes:
  • /etc/localtime:/etc/localtime:ro
  • /etc/timezone:/etc/timezone:ro
  • ./data:/app/pb_data
    restart: unless-stopped

创建失败,请检查compose.yaml文件格式是否正确:
services must be a mapping

通告ai修复后为

version: "3.8"
services:
certimate:
image: certimate/certimate:latest
container_name: certimate
ports:
- "8090:8090"
volumes:
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
- ./data:/app/pb_data
restart: unless-stopped

可以跑起来,但还是在新建工作量时报上面的错误

复现步骤 / Steps to reproduce

新建工作流报错

日志 / Logs

# 请在此粘贴日志 / PasteUnexpected Application Error!
Promise.try is not a function
TypeError: Promise.try is not a function
    at http://192.168.0.221:8090/assets/index-DufRquTU.js:577:1138693
    at Wk (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:98593)
    at sv (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:117294)
    at UU (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:111258)
    at Rh (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:48035)
    at CNe (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:116069)
    at Bm (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:115030)
    at HU (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:110357)
    at O (http://192.168.0.221:8090/assets/index-DufRquTU.js:25:1590)
    at MessagePort.$ (http://192.168.0.221:8090/assets/index-DufRquTU.js:25:1949)
💿 Hey developer 👋

You can provide a way better UX than this when your app throws errors by providing your own ErrorBoundary or errorElement prop on your route. logs here

其他 / Miscellaneous

No response

贡献 / Contribution

  • 我乐意为此贡献 PR! / I am interested in contributing a PR for this!
Originally created by @hqylwrx on GitHub (Oct 11, 2025). Original GitHub issue: https://github.com/certimate-go/certimate/issues/986 ### 软件版本 / Release Version v0.4 ### 缺陷描述 / Description Unexpected Application Error! Promise.try is not a function TypeError: Promise.try is not a function at http://192.168.0.221:8090/assets/index-DufRquTU.js:577:1138693 at Wk (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:98593) at sv (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:117294) at UU (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:111258) at Rh (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:48035) at CNe (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:116069) at Bm (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:115030) at HU (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:110357) at O (http://192.168.0.221:8090/assets/index-DufRquTU.js:25:1590) at MessagePort.$ (http://192.168.0.221:8090/assets/index-DufRquTU.js:25:1949) 💿 Hey developer 👋 You can provide a way better UX than this when your app throws errors by providing your own ErrorBoundary or errorElement prop on your route. 新建工作流报错,请问是什么情况? 另外,指南的编排,命令丢进宝塔的docker编排报错, version: "3.0" services: certimate: image: certimate/certimate:latest container_name: certimate ports: - 8090:8090 volumes: - /etc/localtime:/etc/localtime:ro - /etc/timezone:/etc/timezone:ro - ./data:/app/pb_data restart: unless-stopped 创建失败,请检查compose.yaml文件格式是否正确: services must be a mapping 通告ai修复后为 version: "3.8" services: certimate: image: certimate/certimate:latest container_name: certimate ports: - "8090:8090" volumes: - /etc/localtime:/etc/localtime:ro - /etc/timezone:/etc/timezone:ro - ./data:/app/pb_data restart: unless-stopped 可以跑起来,但还是在新建工作量时报上面的错误 ### 复现步骤 / Steps to reproduce 新建工作流报错 ### 日志 / Logs <details> ```console # 请在此粘贴日志 / PasteUnexpected Application Error! Promise.try is not a function TypeError: Promise.try is not a function at http://192.168.0.221:8090/assets/index-DufRquTU.js:577:1138693 at Wk (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:98593) at sv (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:117294) at UU (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:111258) at Rh (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:48035) at CNe (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:116069) at Bm (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:115030) at HU (http://192.168.0.221:8090/assets/index-DufRquTU.js:33:110357) at O (http://192.168.0.221:8090/assets/index-DufRquTU.js:25:1590) at MessagePort.$ (http://192.168.0.221:8090/assets/index-DufRquTU.js:25:1949) 💿 Hey developer 👋 You can provide a way better UX than this when your app throws errors by providing your own ErrorBoundary or errorElement prop on your route. logs here ``` </details> ### 其他 / Miscellaneous _No response_ ### 贡献 / Contribution - [x] 我乐意为此贡献 PR! / I am interested in contributing a PR for this!
kerem 2026-03-03 01:05:10 +03:00
  • closed this issue
  • added the
    bug
    label
Author
Owner

@fudiwei commented on GitHub (Oct 13, 2025):

浏览器版本过低。

https://docs.certimate.me/docs/getting-started/webui#browser-support

<!-- gh-comment-id:3395802347 --> @fudiwei commented on GitHub (Oct 13, 2025): 浏览器版本过低。 > https://docs.certimate.me/docs/getting-started/webui#browser-support
Author
Owner

@hqylwrx commented on GitHub (Oct 13, 2025):

创建失败,请检查compose.yaml文件格式是否正确:
services must be a mapping

另外这个 ,编排,是不是 要加“” ?
ports:

  • "8090:8090"

[root@localhost ~]# docker compose version
Docker Compose version v2.27.1
[root@localhost ~]# docker --version
Docker version 26.1.4, build 5650f9b

<!-- gh-comment-id:3396253634 --> @hqylwrx commented on GitHub (Oct 13, 2025): 创建失败,请检查compose.yaml文件格式是否正确: services must be a mapping 另外这个 ,编排,是不是 要加“” ? ports: - "8090:8090" [root@localhost ~]# docker compose version Docker Compose version v2.27.1 [root@localhost ~]# docker --version Docker version 26.1.4, build 5650f9b
Author
Owner

@hqylwrx commented on GitHub (Oct 13, 2025):

创建失败,请检查compose.yaml文件格式是否正确:
services must be a mapping

另外这个 ,编排,是不是 要加“” ?
ports:

"8090:8090"

@.*** ~]# docker compose version
Docker Compose version v2.27.1
@.*** ~]# docker --version
Docker version 26.1.4, build 5650f9b

HQY
@.***

 

------------------ 原始邮件 ------------------
发件人: "certimate-go/certimate" @.>;
发送时间: 2025年10月13日(星期一) 中午12:17
@.
>;
@.@.>;
主题: Re: [certimate-go/certimate] [Bug] 9.6版本宝塔的docker编排或者直接docker run后成功运行 ,但是 新建工作流时报错 Unexpected Application Error! Promise.try is not a function TypeError: Promise.try is not a function (Issue #986)

fudiwei left a comment (certimate-go/certimate#986)

浏览器版本过低。

https://docs.certimate.me/docs/getting-started/webui#browser-support


Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: @.***>

<!-- gh-comment-id:3396311174 --> @hqylwrx commented on GitHub (Oct 13, 2025): 创建失败,请检查compose.yaml文件格式是否正确: services must be a mapping 另外这个 ,编排,是不是 要加“” ? ports: "8090:8090" ***@***.*** ~]# docker compose version Docker Compose version v2.27.1 ***@***.*** ~]# docker --version Docker version 26.1.4, build 5650f9b HQY ***@***.*** &nbsp; ------------------&nbsp;原始邮件&nbsp;------------------ 发件人: "certimate-go/certimate" ***@***.***&gt;; 发送时间:&nbsp;2025年10月13日(星期一) 中午12:17 ***@***.***&gt;; ***@***.******@***.***&gt;; 主题:&nbsp;Re: [certimate-go/certimate] [Bug] 9.6版本宝塔的docker编排或者直接docker run后成功运行 ,但是 新建工作流时报错 Unexpected Application Error! Promise.try is not a function TypeError: Promise.try is not a function (Issue #986) fudiwei left a comment (certimate-go/certimate#986) 浏览器版本过低。 https://docs.certimate.me/docs/getting-started/webui#browser-support — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: ***@***.***&gt;
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/certimate#676
No description provided.