25 Nov
2020
25 Nov
'20
2:44 p.m.
brianïĵ emwd.com wrote:
Even though telnet is installed on the server I get the following when trying to use telnet: bash-4.4# telnet bash: telnet: command not found
That's because you're inside a Docker image running Alpine, where telnet is not installed by default.
Run
apk update apk add busybox-extras
to install telnet inside the container.