My new Toy: Wink Hub 2
Picked up Wink Hub 2 last week. Pretty good as compared to Samsung Smartthings which is going back to Amazon.
Finding stories in everyday adventures
Picked up Wink Hub 2 last week. Pretty good as compared to Samsung Smartthings which is going back to Amazon.
Replaced the old thermostat with the smart Nest thermostat. Had always been wanting a smart thermostat and after we bought the house, it was the perfect opportunity to get it. The previous thermostat used to be an Aprilaire thermostat. I believe it also controlled a humidifier. However, there is no …
Old house and extremely limited shelving in Closets, sounds familiar right? Well, I decided to take care of storage by installing shiny new wire shelving in all the 3 closets we have in the house. Here are some photos of the Master Bedroom closet. I know what you are thinking, …
Had a water damaged base of the Under the sink Cabinet. As a result, it was sagging and couldn’t support anything on it. I decided to replace it. It turned out to be a great small project. Bonus: also ended up installing a new Garbage disposal!
Yes! I installed new cold water line for our fridge. All my crimps were good. Very happy to get it right first time.
I created a custom docker image for PHP that includes following: Custom PHP.ini file correct timezone configured Apache mod_rewrite enabled PHP PDO MySQL extension installed You can access it here. …and click here for Dockerfile link
My site and this blog is now completely on Docker containers. I really like the setup and it wasn’t too difficult to achieve. This will help me reduce my physical server to bare minimums required to keep Docker containers running. Docker is amazing and truly revolutionary!
This applies to official WordPress image but can be used with PHP image also. Create Dockerfile with following contents: FROM wordpress:latest # Install gd and freetype RUN apt-get -y update \ && apt-get -y install php5-gd freetype* \ && docker-php-ext-configure gd –with-freetype-dir=/usr/include/ –with-jpeg-dir=/usr/include/ \ && docker-php-ext-install -j$(nproc) gd Build your …
Read moreConfiguring GD and Freetype on WordPress Docker Image
I am just starting out on Docker and so far it’s been fun. Here I am going to show how I used Docker WordPress and MySQL containers. Before I delve into the details, I want to tell you that I am going to be working on Windows using SSH on …
Docker on Windows has a lot to be desired. One thing I found uncomfortable to use is the Docker Shell on Windows. As of version 1.11.2, Docker uses MINGW64 extension to provide the UNIX Shell on Windows and even then it operates on the host, i.e. the Windows machine. If …