Last active
March 9, 2018 22:33
-
-
Save cbergau/af91fbf1081c5ee3dd76a02c7a20a813 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let config = { | |
"php": [{ | |
"base-image": "php:5-apache", | |
"groups": [ | |
{ | |
"name": "Memcache", | |
"properties": [ | |
{ | |
"name": "memcache.lifetime", | |
"type": "integer", | |
"defaultValue": 60, | |
}, | |
], | |
"help": "http://php.net/manual/de/book.memcached.php" | |
} | |
}, | |
{ | |
"base-image": "php:7-apache", | |
"groups": [ | |
{ | |
"name": "Memcached", | |
"properties": [ | |
{ | |
"name": "memcached.sess_locking", | |
"type": "boolean", | |
"defaultValue": true, | |
}, | |
], | |
"help": "http://php.net/manual/de/book.memcached.php" | |
} | |
}] | |
] | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment