Blog

Latest posts

  • How to Mount an SMB Share to a Docker Container (Step-by-Step)

    🧱 Step 1: Mount SMB Share on Host (Linux Example) Run this on your Docker host (Linux): 👉 You can also make this mount persistent in /etc/fstab. 🐳 Step 2: Run Docker Container with SMB Mount Now mount the local directory (e.g., /mnt/smb) into your container: Inside the container, /data/smb-share will map to your SMB…

  • Docker container user permission settings for SMB-mounted directory

    To ensure the Docker container can read and write to an SMB-mounted directory, you need to properly set permissions on both: ✅ Step-by-Step: Set Correct Permissions 🧱 1. Mount the SMB Share with Correct UID/GID Use mount -t cifs with uid and gid options to set file ownership on the host. Example: Example output: If…

  • How to enable 2FA on WordPress for free

    2FA aka 2 Factor Authentication is a must to secure your accounts on the internet. This method of authentication will significantly reduce the risk of anyone being able to gain unauthorised access to your WordPress admin portal by requiring a 2nd form of authentication only accessible by you. By enabling 2FA on WordPress, you will…