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 central humidifier I could find, therefore, it was only to control temperature.
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, it’s so tiny! Yes Sir or Madam, this is an Old house. Back then they did not have large walk-in closets. So before image: Step …
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 image docker build -t wordpress . Or you can use my image here.
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 VM. If you want to know how to do that see this post here. So let’s start. Open SSH console. We are going to …
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 you know the current architecture, Docker runs on a Linux VM on top of Windows host. Therefore, what gets typed on Docker console is eventually …