Docker (web) UI

Using portainer you can manage your local (or remote) docker through a web UI. Portainer is an open source project. Deployment The easiest way to deploy portainer is using a container. It is also possible to deploy it locally (for more details and options, check the links bellow). On this Read more

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

Kubernetes in seconds: MicroK8s

Create a kubernetes cluster all-in-one virtual machine for kubernetes learning/experimentation. Note: There is a little video on https://microk8s.io/ if that is more of your cup of tea. Ingredients Virtual Machine (e.g. AWS EC2 instance)  Ubuntu 18.04 LTS (or any linux distribution with snap support) Create cluster using microk8s Like Magic: You Read more

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