Red Rock Canyon

These pictures were taken at the Red Rock Canyon outside of Las Vegas, Nevada. We went on a Scooter tour. I drove, with wife as the rider. Shot on Canon T3i and mostly using kit lenses: EFS 55-250MM 4-5.6 IS and EFS 18-55MM 3.5-5.6 IS II.

Hoover Dam

Pictures taken at the Hoover Dam, on our way to Grand Canyon. Hoover Dam is on the border of Arizona and Nevada, and technically does not have a street address. History of Hoover Dam: https://en.wikipedia.org/wiki/Hoover_Dam Shot on Canon T3i and mostly using kit lenses: EFS 55-250MM 4-5.6 IS and EFS 18-55MM 3.5-5.6 IS II.

Kingman

Pictures taken at the Visitor Center in Kingman, AZ, on our way to Grand Canyon. Shot on Canon T3i and mostly using kit lenses: EFS 55-250MM 4-5.6 IS and EFS 18-55MM 3.5-5.6 IS II.

SELinux fix for Mergerfs to allow Docker and Samba access

I recently started using Snapraid and Mergerfs setup to manage my disk pool. I have ~27TB of raw storage which I am managing. While setting up Mergerfs as usual ran into SELinux issues that will prohibit Docker and Samba access to the storage. So, here’s my fix. Samba setsebool -P samba_share_fusefs=1 Docker setsebool -P virt_sandbox_use_fusefs=1

Docker Container for SMTP Relay

SMTP Relay service allows you to use an external SMTP server to send your mails through. After many frustrating hours of working with several SMTP Relay Docker Images, I finally found the one that works. Link: https://hub.docker.com/r/tecnativa/postfix-relay/ Configuration is very easy; Sample Run script docker run \ –name name\ -d \ –restart=always \ -p localport:25 \ -e “MAIL_RELAY_HOST=smtpserver” \ -e …

Read moreDocker Container for SMTP Relay