我正在运行一个HPCC集群在码头-撰写在我的笔记本电脑使用对接-工具箱,因为我有Windows7。我可以成功地连接到容器(http://192.168.99.100:8010)
我的docker-compose.yml文件是:
version: '2'
services:
hpcc-master:
image: hpccsystems/platform-ce:6.4.4-1trusty
command: bash -c "cd /tmp; set -e && /tmp/run_master.sh"
ports:
- "8010:8010"
links:
- hpcc-thor
- hpcc-roxie
privileged: true
tty: true
environment:
- MAX_ROXIE_INDEX=10
- MAX_THOR_INDEX=10
- SLAVES_PER_NODE=1
#- DOWNLOAD_URL=https://github.com/xwang2713/HPCC-Docker
#- DOWNLOAD_METHOD=git
hpcc-thor:
image: hpccsystems/platform-ce:6.4.4-1trusty
privileged: true
tty: true
hpcc-roxie:
image: hpccsystems/platform-ce:6.4.4-1trusty
privileged: true
tty: true
networks:
default:
external:
name: hpccbridge桥是用码头网络创建的,创建hpccbridge
码头ps输出:

我的线人是:

我想要的是我的HPCC,我的另一台笔记本电脑(类似http://10.55.58.59:8010)
如何做到这一点?
发布于 2018-01-08 18:35:11
这更多是一个虚拟盒问题,而不是与Docker相关的问题。您可以在Virtual中配置端口转发以完成以下操作:
https://stackoverflow.com/questions/48155645
复制相似问题