
Similar Posts

Force Upgrading to Ubuntu 24.04 LTS Before Official Release
In this guide, I share a step-by-step method for early adopters to experience Ubuntu 24.04 LTS before its official release. I emphasize caution and provide clear instructions to minimize risks, helping my tech-savvy audience stay ahead of the curve while ensuring a smooth upgrade process.

Install Caddy reverse proxy via Docker
Why caddy? These are just some of Caddy’s amazing features! Install Docker and Docker Compose if you haven’t already. View our docker guide here & our docker rootless guide here. Scenario: you have a new app you wrote or installed via docker called mycoolapp you want to allow the outside world to connect to this…

Access Docker socket via TCP
Find the config file Edit config Add the following configuration to the file: This tells Docker to listen on TCP port 2375 on IP (192.168.1.10) and on the Unix domain socket at /var/run/docker.sock. Replace 192.168.1.10 with your LAN or VPN IP. The last line in that file must NOT have a comma after it, if…