Category: Docker

  • Set up MySQL/MariaDB and PhpMyAdmin for your Homelab

    Set up MySQL/MariaDB and PhpMyAdmin for your Homelab

    When you start your journey with a homelab you get some sort of computer to use as a server and start throwing cool Docker containers on it. You soon find that many of your applications need databases, and you’ll mostly encounter SQL, MySQL/MariaDB, PostgreSQL, Redis and MongoDB. If you have 20 different applications that require…

  • Awesome Lists

    Lots of great docker goodies to make your life better. Want to run some new services but you don’t even know what you’re missing? These are some great places to look

  • Container can’t see my files!

    Container can’t see my files!

    Containers are sort of virtual machines, a computer running on a computer. They don’t have access to your actual files, just to what’s available inside their filesystem. In Windows, you mount a USB drive, a disk, or a network location with a drive letter e.g D,E,F. In Linux the system doesn’t begin with a letter,…

  • Volumes and Bind Mounts

    Volumes and Bind Mounts

    Files inside the container are on a virtual filesystem. You cannot directly access the files inside the container, and the container cannot normally access your files. You should think of docker containers somewhat as Virtual Machines. Volumes are paths on the host mounted inside the container, allowing for persistent storage. Removing a container does not…

  • Gluetun – VPN for your containers

    Gluetun – VPN for your containers

    Setup both a VPN and local access for your containers in just a few moments using Gluetun! You can even use Pihole as your DNS! Gluetun Gluetun is a VPN client in a thin Docker container for multiple VPN providers, written in Go, and using OpenVPN or Wireguard, DNS over TLS, with a few proxy…

  • Install Portainer in 10 seconds

    Install Portainer in 10 seconds

    Portainer is a container management software which offers an easy to use user interface for deploying and managing all your Docker needs! Here’s how to install it in 10 seconds Requirements If you don’t already have Docker, run the following command to install it! You need to do this on a user with root/sudo privileges.…

  • Various fixes for software issues

    Over time I’ve had issues with software that were difficult or annoying to find the solution to, and I figured collecting some of these for future reference wouldn’t hurt. Ffmpeg Unrecognized option “vol” Use the ffmpeg from ShareX 15. The one bundled with ShareX 16 doesn’t have this option for some god forsaken reason Nginx…