Docker start with configured ports

1.8k Views Asked by At

I have problem with Docker. I created new container using sudo docker run --name myXampp -p 41061:22 -p 41062:80 -d -v ~/Projekty/Xampp:/www pindr0p/xampp and I could access localhost:41062, but when i restarted my pc, i wanted to run docker container and again access server so I did sudo docker start myXampp but I can not access localhost:41062 anymore. Did I miss something? I even tried start with -p flags, but no success. Please help me.

Thanks

3

There are 3 best solutions below

0
On

Restart your container by container Id

List all the containers who are existed or check the status of your containers after restart

docker ps -a

Then restart the container by Contaner Id

docker restart <container_id>
0
On

Stop the container using:

sudo docker stop 29ddc6836adfa14d4ec3a025fddd2e5587212fef77ba0d6edb83642a3daedd3e

and then try:

sudo docker run --name myXampp -p 41061:22 -p 41062:80 -d -v ~/Projekty/Xampp:/www pindr0p/xampp
1
On

try to remove it competently

first please get list of dockers run as process

docker ps 

then try to remove it:

docker rm <your-docker> --force

then try to run

docker ps

and make sure the docker removed then try to

docker run blob

again

yes the container made from image again and all your new config reverted back