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.
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.