Create SOCKS Proxy with SSH

How to create Socks Proxy with SSH Use this command to create a socks proxy using SSH tunnel: ssh -D 8080 user@server_ip You can adjust the port nummber.
One minute to read

Install Docker on Alpine Linux

Docker is available in Alpine’s community repository. We will first enable Alpine’s community repositoy and then install Docker. Enable Alpine community repository To enable community repositoy in Alpine Linux, we need to edit /etc/apk/repositories file and uncomment the community repo: Open /etc/apk/repositories using a text editor, I am using vim here, you can use nano though.
One minute to read