Docker is an open platform for developing, shipping, and running applications.
Docker allows you to separate your applications from your infrastructure so you can deliver software quickly. With Docker, you can manage your infrastructure in the same ways you manage your applications.
root@iZbp19bvr4g3vqr24ft07rZ:~# docker search nginx NAME DESCRIPTION STARS OFFICIAL nginx Official build of Nginx. 20031 [OK] unit Official build of NGINX Unit: Universal Web … 33 [OK] nginx/nginx-ingress NGINX and NGINX Plus Ingress Controllers fo… 92 nginxinc/nginx-unprivileged Unprivileged NGINX Dockerfiles 155 // .....
Options: --details Show extra details provided to logs -f, --follow Follow log output --since string Show logs since timestamp (e.g. "2013-01-02T13:23:37Z") or relative (e.g. "42m"for 42 minutes) -n, --tail string Number of lines to show from the end of the logs (default "all") -t, --timestamps Show timestamps --until string Show logs before a timestamp (e.g. "2013-01-02T13:23:37Z") or relative (e.g. "42m"for 42 minutes)
Commands: create Create a volume inspect Display detailed information on one or more volumes ls List volumes prune Remove unused local volumes rm Remove one or more volumes
Run 'docker volume COMMAND --help'for more information on a command.
root@iZbp19bvr4g3vqr24ft07rZ:~# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 990e5a0389e6 nginx "/docker-entrypoint.…" 2 minutes ago Up 2 minutes 0.0.0.0:80->80/tcp, :::80->80/tcp nginx_volume root@iZbp19bvr4g3vqr24ft07rZ:~# curl localhost:80 <!DOCTYPE html> <html> <head> <title>Welcome to nginx!</title> <style> html { color-scheme: light dark; } body { width: 35em; margin: 0 auto; font-family: Tahoma, Verdana, Arial, sans-serif; } </style> </head> <body> <h1>Welcome to nginx!</h1> <p>If you see this page, the nginx web server is successfully installed and working. Further configuration is required.</p>
<p>For online documentation and support please refer to <a href="http://nginx.org/">nginx.org</a>.<br/> Commercial support is available at <a href="http://nginx.com/">nginx.com</a>.</p>
<p><em>Thank you for using nginx.</em></p> </body> </html>
root@iZbp19bvr4g3vqr24ft07rZ:~# cd /var/lib/docker/volumes/68d5763087ed18658eb1327e987101aeb45bc3e2f674b0657cee877d416a12ef/_data root@iZbp19bvr4g3vqr24ft07rZ:/var/lib/docker/volumes/68d5763087ed18658eb1327e987101aeb45bc3e2f674b0657cee877d416a12ef/_data# ls 50x.html index.html root@iZbp19bvr4g3vqr24ft07rZ:/var/lib/docker/volumes/68d5763087ed18658eb1327e987101aeb45bc3e2f674b0657cee877d416a12ef/_data#
<!DOCTYPE html> <html> <head> <title>after my fixfixfix!</title> <style> html { color-scheme: light dark; } body { width: 35em; margin: 0 auto; font-family: Tahoma, Verdana, Arial, sans-serif; } </style> </head> <body> <h1>Welcome to nginx!</h1> <p>If you see this page, the nginx web server is successfully installed and working. Further configuration is required.</p>
<p>For online documentation and support please refer to <a href="http://nginx.org/">nginx.org</a>.<br/> Commercial support is available at <a href="http://nginx.com/">nginx.com</a>.</p>
<p><em>Thank you for using nginx.</em></p> </body> </html>
root@990e5a0389e6:/usr/share/nginx/html# curl localhost:80 <!DOCTYPE html> <html> <head> <title>after my fixfixfix!</title> <style> html { color-scheme: light dark; } body { width: 35em; margin: 0 auto; font-family: Tahoma, Verdana, Arial, sans-serif; } </style> </head> <body> <h1>Welcome to nginx!</h1> <p>If you see this page, the nginx web server is successfully installed and working. Further configuration is required.</p>
<p>For online documentation and support please refer to <a href="http://nginx.org/">nginx.org</a>.<br/> Commercial support is available at <a href="http://nginx.com/">nginx.com</a>.</p>
<p><em>Thank you for using nginx.</em></p> </body> </html>
root@iZbp19bvr4g3vqr24ft07rZ:~# docker volume ls DRIVER VOLUME NAME local 2a5808e089d3e17977f9586770d1489dcaf79473a4c37ae1dc4c863a6c4a59f8 local 4ed2880b063c5c7dd3057088a4e614cf7fb9c071692a8b0a193d9c4c01b57f56 local 6ace849e5a1ceea672b6b771f80cb484c17f7dd69456ff4b277d69981587a75a local 40ab82e68b995b09b5342021bc6a34378e9b54bed1d352402fe8df729eae174d local 68d5763087ed18658eb1327e987101aeb45bc3e2f674b0657cee877d416a12ef local 88e667aa68a83da1322e525e528cefbf4cce342d9caec1e4f7359b607349b102 local 6320e3d5a1e2cba18f6d04ef7ac45af7abe8f5e15658d236afea8c1d30d0038b local 56555ab23611f1a946d1cb08e922f9b82af59cc36b459ac321620ec2a43a5ed2 local a9f4299d0bb46ccf9bc7210bcba921f3ccf2db94a0b5e580df6d5b1ec9728498 local c24965087c46f93d55ff6d3d41530ced7268706777b998b00ca5085bae253c6c local e20e5fcebfc72118c1352b0fc0fdc0e31e3e2985b46f682d1fad04bba9115bc1 local fa5dc80a62250e91edd5a8e205ca6311ce79f022a8f12f35da7d7563a5bc48fd root@iZbp19bvr4g3vqr24ft07rZ:~# docker stop nginx_volume nginx_volume root@iZbp19bvr4g3vqr24ft07rZ:~# docker ps -a CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 9d96ec7a3c6c nginx "/docker-entrypoint.…" 9 days ago Up 9 days 0.0.0.0:32770->80/tcp, :::32770->80/tcp nginx01 525d3cea0513 nginx "/docker-entrypoint.…" 9 days ago Exited (0) 9 days ago eager_shirley e5bdc6b3cab8 nginx "/docker-entrypoint.…" 9 days ago Exited (0) 9 days ago jovial_hawking 8b274132b674 hello-world "/hello" 9 days ago Exited (0) 9 days ago admiring_blackburn 387c58f4b704 hello-world "/hello" 9 days ago Exited (0) 9 days ago silly_moore root@iZbp19bvr4g3vqr24ft07rZ:~# docker volume ls DRIVER VOLUME NAME local 2a5808e089d3e17977f9586770d1489dcaf79473a4c37ae1dc4c863a6c4a59f8 local 4ed2880b063c5c7dd3057088a4e614cf7fb9c071692a8b0a193d9c4c01b57f56 local 6ace849e5a1ceea672b6b771f80cb484c17f7dd69456ff4b277d69981587a75a local 40ab82e68b995b09b5342021bc6a34378e9b54bed1d352402fe8df729eae174d local 88e667aa68a83da1322e525e528cefbf4cce342d9caec1e4f7359b607349b102 local 6320e3d5a1e2cba18f6d04ef7ac45af7abe8f5e15658d236afea8c1d30d0038b local 56555ab23611f1a946d1cb08e922f9b82af59cc36b459ac321620ec2a43a5ed2 local a9f4299d0bb46ccf9bc7210bcba921f3ccf2db94a0b5e580df6d5b1ec9728498 local c24965087c46f93d55ff6d3d41530ced7268706777b998b00ca5085bae253c6c local e20e5fcebfc72118c1352b0fc0fdc0e31e3e2985b46f682d1fad04bba9115bc1 local fa5dc80a62250e91edd5a8e205ca6311ce79f022a8f12f35da7d7563a5bc48fd root@iZbp19bvr4g3vqr24ft07rZ:~#
root@iZbp19bvr4g3vqr24ft07rZ:~# docker volume ls DRIVER VOLUME NAME local 2a5808e089d3e17977f9586770d1489dcaf79473a4c37ae1dc4c863a6c4a59f8 local 4ed2880b063c5c7dd3057088a4e614cf7fb9c071692a8b0a193d9c4c01b57f56 local 6ace849e5a1ceea672b6b771f80cb484c17f7dd69456ff4b277d69981587a75a local 40ab82e68b995b09b5342021bc6a34378e9b54bed1d352402fe8df729eae174d local 88e667aa68a83da1322e525e528cefbf4cce342d9caec1e4f7359b607349b102 local 6320e3d5a1e2cba18f6d04ef7ac45af7abe8f5e15658d236afea8c1d30d0038b local 56555ab23611f1a946d1cb08e922f9b82af59cc36b459ac321620ec2a43a5ed2 local a9f4299d0bb46ccf9bc7210bcba921f3ccf2db94a0b5e580df6d5b1ec9728498 local c24965087c46f93d55ff6d3d41530ced7268706777b998b00ca5085bae253c6c local e20e5fcebfc72118c1352b0fc0fdc0e31e3e2985b46f682d1fad04bba9115bc1 local fa5dc80a62250e91edd5a8e205ca6311ce79f022a8f12f35da7d7563a5bc48fd local nginx-html
root@iZbp19bvr4g3vqr24ft07rZ:~# docker rm -f nginx_volume nginx_volume root@iZbp19bvr4g3vqr24ft07rZ:~# docker volume ls DRIVER VOLUME NAME local 2a5808e089d3e17977f9586770d1489dcaf79473a4c37ae1dc4c863a6c4a59f8 local 4ed2880b063c5c7dd3057088a4e614cf7fb9c071692a8b0a193d9c4c01b57f56 local 6ace849e5a1ceea672b6b771f80cb484c17f7dd69456ff4b277d69981587a75a local 40ab82e68b995b09b5342021bc6a34378e9b54bed1d352402fe8df729eae174d local 88e667aa68a83da1322e525e528cefbf4cce342d9caec1e4f7359b607349b102 local 6320e3d5a1e2cba18f6d04ef7ac45af7abe8f5e15658d236afea8c1d30d0038b local 56555ab23611f1a946d1cb08e922f9b82af59cc36b459ac321620ec2a43a5ed2 local a9f4299d0bb46ccf9bc7210bcba921f3ccf2db94a0b5e580df6d5b1ec9728498 local c24965087c46f93d55ff6d3d41530ced7268706777b998b00ca5085bae253c6c local e20e5fcebfc72118c1352b0fc0fdc0e31e3e2985b46f682d1fad04bba9115bc1 local fa5dc80a62250e91edd5a8e205ca6311ce79f022a8f12f35da7d7563a5bc48fd local nginx-html
root@iZbp19bvr4g3vqr24ft07rZ:~# docker network create --driver bridge --subnet 192.168.133.0/24 --gateway 192.168.133.1 wolfcode f34f3bd1c7aa84aa8c6262f0ecac14ad662bdab2667543be165111a8d9302133 root@iZbp19bvr4g3vqr24ft07rZ:~# docker netwok ls docker: 'netwok' is not a docker command. See 'docker --help' root@iZbp19bvr4g3vqr24ft07rZ:~# docker network ls NETWORK ID NAME DRIVER SCOPE 683cea28bac4 bridge bridge local a1d8fa2e9dbd host host local 84bfb52c9cce none null local f34f3bd1c7aa wolfcode bridge local