to run a container using this image run the line below:
docker run -dit -p 80:80 -p 2220:2222 --name my-apache-instance my-apache
To enable ssh expose some port on the host and 2222 on the container.
some times to ssh to the container you need to add -c 3des-cbc flag
to ssh from the host : ssh root@localhost -p 2220
to ssh to the host : ssh root@[you host ip] -p 2220 -c 3des-cbc
to ssh to another container : ssh root@[you host ip] -p [another container ip] -c 3des-cbc
Working version tag is : 1.0.2
Content type
Image
Digest
Size
99.8 MB
Last updated
about 8 years ago
docker pull smuel770/my-apache:1.0.2