Questions tagged [docker-run]
214 questions
-1
votes
1 answer
Issue with Docker container not running after been deploy
Below the steps one by one, none delivered an error output but even that the container doesn't run after performing them:
1. Container Creation with no errors
~$ sudo docker container run -d -p 81:22 --name test3…

apl
- 57
- 1
- 12
-2
votes
1 answer
Docker run command options in kubernetes
I am starting my docker container using following command
docker run -it -d -p 80001:8000.
Now i want to use use docker container in kubernetes using deployment. How to setup container spec secion of deployment for above mentioned arugment -it and…

Akshay Gopani
- 473
- 4
- 16
-2
votes
1 answer
Problem with CMD followed by ENTRYPOINT in Dockerfile
I have a Dockerfile looking like this:
FROM quorumengineering/quorum:latest
RUN apk add nodejs npm
RUN cd ~
RUN npm i axios
COPY watcher.js .
ENTRYPOINT [ "geth", "--raft", "--raftjoinexisting", "1" ]
CMD "node watcher.js"
What I'm trying to…

hc0re
- 1,806
- 2
- 26
- 61
-3
votes
1 answer
Copy a file from a Docker to another Docker and execute it
As I mentioned above, I want to copy an executable file from a docker to another docker and run it.
docker cp target/demo.jar test:/demo.jar
is not working since docker cp can copy only "docker to host" or "host to docker".
as a next step, I need…

RDD
- 145
- 1
- 18