Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
cloudbeaver:
image: dbeaver/cloudbeaver:24.2.4
image: dbeaver/cloudbeaver:24.2.5
container_name: ${CONTAINER_NAME}
restart: unless-stopped
networks:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

该命令使用的是Docker,这是一个面向容器和基础设施的一站式解决方案。但是,在这个具体的例子中,看起来似乎有几处不规范的地方。

  1. services:\ 命令应该出现在 docker-compose.yml 文件中的 <environment> 部分。
  2. cloudbeaver: 应放在 docker-image 名称之前,以便为 Dockerfile 提供正确的名称映射到云贝弗软件包名。

另外,根据版本,需要更新 image:, 比如从 24 变更至最新稳定版(24.2.5)。例如:

services:
  cloudbeaver:
    image: dbeavercloud/beaconfire:latest

以上是关于如何进行修正的部分建议内容:在 DCOMPOZENY 文件中有适当的错误,并且将最新的 Docker Image 版本应用到了指定的服务上.

请注意,具体的具体变更可能还需要依赖于你正在使用的环境变量。

Expand Down