Docker/Ubuntu: Difference between revisions
< Docker
(Created page with "== Tools to install == Install ping: <ref>https://stackoverflow.com/questions/39901311/docker-ubuntu-bash-ping-command-not-found</ref> apt-get update -y apt-get install -y iputils-ping") |
No edit summary |
||
Line 1: | Line 1: | ||
== Tools to install == | == Tools to install == | ||
=== ping === | |||
Install ping: <ref>https://stackoverflow.com/questions/39901311/docker-ubuntu-bash-ping-command-not-found</ref> | Install ping: <ref>https://stackoverflow.com/questions/39901311/docker-ubuntu-bash-ping-command-not-found</ref> | ||
apt-get update -y | apt-get update -y | ||
apt-get install -y iputils-ping | apt-get install -y iputils-ping | ||
=== ip === | |||
Install ip command: <ref>https://askubuntu.com/questions/1212555/what-apt-package-installs-ip-addr-command</ref> | |||
apt-get update -y | |||
apt install iproute2 -y |