How to check it

I guess you;d need to install and setup that in the container, so you'd have to:
Code:
docker exec -it mailwizz-webserver /bin/bash
then inside it you'd install the above.
 
docker exec -it mailwizz-webserver /bin/bash
i can not run this command, it show error:
Code:
rpc error: code = 13 desc = invalid header field value "oci runtime error: exec failed: container_linux.go:247: starting container process caused \"exec: \\\"/bin/bash\\\": stat /bin/bash: no such file or directory\"\n"

I can Run this command:
Code:
docker exec -it mailwizz-webserver /bin/sh
 
Right, seems that container does not have the bash shell installed, so
docker exec -it mailwizz-webserver /bin/sh
is just fine.
 
Back
Top