Docker install and run hello world October 12, 2023 This is purely for my own note taking I run these commands a few times a month when I’m setting up a VM for troubleshooting purposes. Hopefully I can find this blog post faster than I can search my Notepad++ tabs. Ubuntu bash commands to install Docker and run a container sudo apt update sudo apt install docker.io -y # start and enable service sudo systemctl start docker sudo systemctl enable docker # to check and see if Ubuntu is running the docker service, uncomment below. #systemctl status docker # Add your user to Docker group to avoid typing sudo everytime you run docker commands. sudo usermod -aG docker ${USER} newgrp docker docker run -d -p 80:8080 -p 443:8443 --restart unless-stopped f5devcentral/f5-hello-world #docker run -d -p 80:8080 --restart unless-stopped nginxdemos/nginx-hello Previous Next
XC K8s sites deployed quickly November 25, 2024 These are shortcut commands for when I want to deploy a XC site in K8s quickly.
Migrating F5 between sites using stretched VLANs November 23, 2024 This article reviews options for migrating F5 BIG-IP devices between multiple physical locations with stretched Layer 2 connectivity
Achieving BIG-IP High Availability with Azure Route Server October 25, 2024 This one is a draft and will probably be a DevCentral Article.
Migrate Bitnami Wordpress between servers, Part 3 October 14, 2024 I hate Wordpress, so I’m creating a post to remember how I migrated this site.