Skip to content

Instantly share code, notes, and snippets.

name: sitename
recipe: drupal8
#services:
#appserver:
# xdebug: true
#config:
#conf: config/php/php-overrides.ini
config:
webroot: app
php: 7.1
@iainp999
iainp999 / gist:fdfc25197555c38caf0a68814f20df86
Created September 27, 2018 09:58
Docker: total size of all images
docker images | awk '{print $7}' | sed '/^$/d' | sed 's/[^0-9]*//g' | paste -sd+ - | bc
@iainp999
iainp999 / gist:3fc7a8904a1ad19c65fe4d959dce6dcb
Created September 27, 2018 09:38
Apache: Prevent internal redirect loop
RewriteCond %{ENV:REDIRECT_STATUS} ^$
@iainp999
iainp999 / keybase.md
Last active February 5, 2019 14:21
Keybase proof

Keybase proof

I hereby claim:

  • I am iainp999 on github.
  • I am iainp999 (https://keybase.io/iainp999) on keybase.
  • I have a public key ASCi5DZ0BUjP3BS4Fk32PxazWrUWp56B3ryNX-twehTO4Qo

To claim this, I am signing this object:

@iainp999
iainp999 / gist:250033b61c4ebb02ed40
Last active August 29, 2015 14:14
Guzzle log adaptor for Drupal
<?php
/**
* Log messages using Drupal watchdog.
*/
class DrupalLogAdaptor implements \Guzzle\Log\LogAdapterInterface {
private $type = 'guzzle';
/**