EDIT: There is now a Docker technical preview for M1 Macs. I checked it out, and it’s way more useful than this guide! This guide is for you if you jumped on the Apple Silicon bandwagon and bought yourself a fancy new M1 Mac, but you need Docker from time to time. It describes how […]
Tag Archives: ssh
Configuring Jenkins on Ubuntu (for C++, GTest and Bitbucket)
 Installing wget -q -O – https://jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add – sudo sh -c ‘echo deb http://pkg.jenkins-ci.org/debian binary/ > /etc/apt/sources.list.d/jenkins.list’ sudo apt-get update $ sudo apt-get install jenkins Once installed, Jenkins will run at port 8080 on your server. Don’t forget to install a C/C++ compiler Don’t forget to install dependencies like QT, libc++ and […]
Setup an SSH tunnel on Mac OS X
There are some apps available to setup an SSH tunnel on OS X, but you can do it very easily in the terminal. Just start a SOCKS web proxy using this SSH command: $ ssh -D 8080 -C -N username@myserver.com -p 22 Once your proxy is running you must tell OS X to use this […]