根据IRC上的#docker的理解,码头网络中心的basex容器在启动后就死了,我现在如何让它运行一些不会立即退出的东西?
我只想在这个bash上得到一个点提示:
docker run -ti --link basexhttp:basexhttp basex/basexhttp:latest basexclient -nbasexhttp
在以下方面的成果:
docker: Error response from daemon: Cannot link to a non running container: /basexhttp AS /charming_villani/bas
我想直接用ssh连接到远程运行的Docker容器。一般情况下我可以
$ ssh -i privateKey user@host
$ docker ps #which will list all running containers
$ docker exec -it ***** bash deploy.sh # ***** is container id and this line run a deployment script
但是我需要在Jenkins管道上运行这个脚本,在那里我只有一次机会。经过多次尝试,我想出了这个
$ ssh -tt -i ~/privateKey user@hos