devliveorg/datacap
DataCap is integrated software for data transformation, integration, and visualization.
317
DataCap 项目提供 devliveorg/datacap 包含 DataCap 服务器和默认配置的 Docker 映像。Docker 映像发布到 Docker Hub,可以与 Docker 运行时等一起使用。
要在 Docker 中运行 DataCap,您必须在计算机上安装 Docker 引擎。您可以从 Docker website, 或使用操作系统的打包系统。
使用 docker 命令从 devliveorg/datacap 图像。为其分配数据帽名称,以便以后更容易引用它。在后台运行它,并将默认 DataCap 端口(即 9096
)从容器内部映射到工作站上的端口 9096
。
docker run -d -p 9909:9096 --name datacap devliveorg/datacap
如果不指定容器映像标记,则默认为 latest
,但可以使用许多已发布的 DataCap 版本,例如 devliveorg/datacap:2024.4
。
需要挂在外接 MySQL 配置,服务启动的方式为
docker run -d -p 9096:9096 -v /root/application.properties:/opt/app/datacap/configure/application.properties --name datacap devliveorg/datacap
假设您的配置文件在 /root/application.properties
,如需要其他路径请指定绝对路径即可。
运行 docker ps
以查看在后台运行的所有容器。
-> % docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
2096fba19e2a devliveorg/datacap:latest "sh ./bin/debug.sh" 5 days ago Up 14 seconds 0.0.0.0:9909->9096/tcp datacap
您可以使用 docker stop datacap
和 docker start datacap
命令停止和启动容器。要完全删除已停止的容器,请运行 docker rm datacap
。
The DataCap project provides devliveorg/datacap Docker images containing the DataCap server and default configurations. The Docker images are published to Docker Hub and can be used with Docker runtime.
To run DataCap in Docker, you must have Docker Engine installed on your machine. You can get it from the Docker website, or use your operating system's packaging system.
Use the docker command to run a container from the devliveorg/datacap image. Give it the name 'datacap' to make it easier to reference later. Run it in the background and map the default DataCap port (i.e., 9096
) from inside the container to port 9096
on your workstation.
docker run -d -p 9909:9096 --name datacap devliveorg/datacap
If you don't specify a container image tag, it defaults to latest
, but you can use any of the published DataCap versions, such as devliveorg/datacap:2024.4
.
External MySQL configuration mounting is required. The service can be started using:
docker run -d -p 9096:9096 -v /root/application.properties:/opt/app/datacap/configure/application.properties --name datacap devliveorg/datacap
Assuming your configuration file is at /root/application.properties
. For other paths, please specify the absolute path.
Run docker ps
to see all containers running in the background.
-> % docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
2096fba19e2a devliveorg/datacap:latest "sh ./bin/debug.sh" 5 days ago Up 14 seconds 0.0.0.0:9909->9096/tcp datacap
You can stop and start the container using the docker stop datacap
and docker start datacap
commands. To completely remove a stopped container, run docker rm datacap
.
docker pull devliveorg/datacap