内部服务 - tencentmusic/cube-studio GitHub Wiki

mysql web服务

镜像:ccr.ccs.tencentyun.com/cube-studio/phpmyadmin

环境变量:

PMA_HOST=xx.xx.xx.xx
PMA_PORT=xx
PMA_USER=xx
PMA_PASSWORD=xx

端口:80

postgresql web服务

镜像:dpage/pgadmin4

环境变量:

[email protected]
PGADMIN_DEFAULT_PASSWORD=root

端口:80

mongo web服务

镜像:mongo-express:0.54.0

环境变量:

ME_CONFIG_MONGODB_SERVER=xx.xx.xx.xx
ME_CONFIG_MONGODB_PORT=xx
ME_CONFIG_MONGODB_ENABLE_ADMIN=true
ME_CONFIG_MONGODB_ADMINUSERNAME=xx
ME_CONFIG_MONGODB_ADMINPASSWORD=xx
ME_CONFIG_MONGODB_AUTH_DATABASE=xx
VCAP_APP_HOST=0.0.0.0
VCAP_APP_PORT=8081
ME_CONFIG_OPTIONS_EDITORTHEME=ambiance

端口:8081

redis web

在notebook准备一个文件

$base_dir/.p3xrs-conns.json

{
    "list": [
    {
        "name": "default",
        "host": "xx.xx.xx.xx",
        "port": xx,
        "password": "xx",
        "id": "unique"
    }
    ],
    "license": ""
}

镜像:patrikx3/p3x-redis-ui:2021.10.262

启动命令:mkdir /settings/ && cp $base_dir/.p3xrs-conns.json /settings/ && p3x-redis

端口:7843

rstudio web服务

镜像:ccr.ccs.tencentyun.com/cube-studio/notebook-enterprise:rstudio-ubuntu-bigdata

环境变量:

DISABLE_AUTH=true
ROOT=true

启动命令:

/init.sh && mkdir -p /home/rstudio/.local && chmod -R 777 /home/rstudio/.local/ && /init

端口:8787

neo4j web服务

镜像:ccr.ccs.tencentyun.com/cube-studio/neo4j:4.4

环境变量:

NEO4J_AUTH=neo4j/admin

端口:7474,7687