Move docker volume to host folder
docker run --rm \ -v "$VOLUME_NAME":/volume \ -v "$(pwd)":/system-folder \ busybox \ cp -r /volume/. /system-folder…
docker run --rm \ -v "$VOLUME_NAME":/volume \ -v "$(pwd)":/system-folder \ busybox \ cp -r /volume/. /system-folder…
Add the following to your traefik.yml http: middlewares: www-redirect: redirectregex: regex: ^(?:https://)?(?:www\.)?(.+) replacement: https://${1} permanent: true Now you can just add the following label to your docker container: traefik.http.routers.REPLACE-THIS.middlewares: "www-redirect@file"…
A detailed guide on how to install and use Pi-hole as a Docker container…
In this article I'll be using the rclone Docker container and a cron job to back up my Google Photos to my NAS every night. Rclone ("rsync for cloud storage") is a command-line program to sync files and directories to and from different cloud storage providers.…
This change prevents the automatic switching from A2DP (Advanced Audio Distribution Profile) to HSP (Handset Profile) in Ubuntu. In Microsoft Teams the profile switches to HSP when the call starts but doesn't switch back when ending it resulting in horrible sounding music afterwards. 💡This does mean your headset…
In Ubuntu port 53 is used by systemd-resolved. If you want to run your own service behind this port you'll have to free it up. To do this, simply edit /etc/systemd/resolved.conf and uncomment DNSStubListener=no. After that restart the service with sudo systemctl restart systemd-resolved.…
A small query to retrieve the size per table of a MySQL database…
When developing a website and having to test notifications or webcam access in the browser you require a TLS connection. A self signed certificate is the solution here!…