Home > other >  Docker when run container/bin/bash what to express
Docker when run container/bin/bash what to express

Time:09-17

I need in cloudify recently arranged on a docker container,
In dealing with the
 docker run - I - t - p 0.0.0.0:6633:6633 ryu/bin/bash 
when don't know what should write/bin/bash option,
Because I met "when running the blueprint has been the no command specified" error, and the previous instruction omit/bin/bash appear the same error,
So have a great god should know how to deal with,

Below is part of the blueprint document:
 
.
Inputs:
Params:
Stdin_open: true
Tty: true
Command:/bin/bash
.

CodePudding user response:

CodePudding user response:

Try/bin/sh

CodePudding user response:

/bin/bash is LINUX SHELL command format
  • Related