Docker : Access to Container Services2023/06/22 |
If you'd like to access to services like HTTP or SSH which is running in Containers as a daemon, Configure like follows.
|
|
[1] | For example, Use a Container image which has Nginx. |
# start a Container and also run Nginx # map the port of Host and the port of Container with [-p xxx:xxx] root@dlp:~# docker run -t -d -p 8081:80 srv.world/debian-nginx /usr/sbin/nginx -g "daemon off;" 666ef1b1b23a3ce4a7c50fb9d558fc96d44bd9ccd333e69edda5277bd7837fc5root@dlp:~# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 666ef1b1b23a srv.world/debian-nginx "/usr/sbin/nginx -g …" 14 seconds ago Up 14 seconds 0.0.0.0:8081->80/tcp, :::8081->80/tcp happy_chaum # create a test page root@dlp:~# docker exec 666ef1b1b23a /bin/bash -c 'echo "Nginx on Docker Container" > /var/www/html/index.html'
# verify it works normally root@dlp:~# curl localhost:8081 Nginx on Docker Container |
Sponsored Link |