Guacamole + Docker

Guacamole is a clientless remote desktop gateway. It supports standard protocols like VNC, RDP, and SSH https://guacamole.apache.org/ Running guacamole on a virtual machine can help you expose other servers on the same VPC that are not accessible directly for remote management.  More important can give you access to any of them Read more…

DNS on Mac

Hopefully this was the last time I have to “google it” 🙂 Flush DNS cache on Mac sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder; say cache flushed To Change the DNS server networksetup -setdnsservers WI-FI 8.8.8.8 8.8.4.4

Docker Private Registry

Host your a bare bones Docker Repository on Ubuntu (16.04) with SSL and user authentication. Install docker Follow instructions on https://docs.docker.com/install/linux/docker-ce/ubuntu/ Make sure to add current user to the docker group.  Assuming this you are using this server just to host the docker private registry, create everything under the user’s Read more…