Nebula Graph Studio

按照github的教程,docker也启动了,用docker-compose启动不了studio,请问是什么原因哦

从截图信息看,studio的web镜像及nginx镜像启动没成功,确定下 700180 端口号是否有服务被占用

7001和80端口都没有被占用,启动日志显示/etc/nginx/conf.d/nebula.conf读取错误,我看系统/etc目录下没有nginx/conf.d/nebula.conf。

/etc/nginx/conf.d/nebula.conf 是 docker-compose 映射进去的目录:

// docker-compose.yml
nginx:
...
    image: nginx:alpine
    volumes:
      - ./nginx/nginx.conf:/etc/nginx/conf.d/nebula.conf
      - ${UPLOAD_DIR}:${MAPPING_DOCKER_DIR}:rw
....

从日志上看看起来跟权限有关,你试试这个?linux - Why does docker container prompt "Permission denied"? - Stack Overflow