Docker image of HHVM.
You can enable the memcached session handler at runtime by either using a Docker --link to a container running Memcached, or you can supply a list of servers in an environment variable. When HHVM starts, the settings will be written to /etc/hhvm/php.ini to enable Memcached based session storage. (If neither is used, standard file-based session storage remains the default.)
You may link a Memcached container using the name memcached.
docker run -d --name foobar memcached
docker run -d --link foobar:memcached hhvm
You may pass the MEMCACHED environment variable which should contain a list of Memcached hosts and ports.
docker run -d -e "MEMCACHED=192.168.0.50:11211,192.168.0.60:11211" hhvm
You can mount a volume to /usr/local/share/ca-certificates that contains any certificate authorities you wish to accept as trusted. Debian's update-ca-certificates is run before HHVM executes.
Content type
Image
Digest
sha256:db4df3de8…
Size
130.6 MB
Last updated
over 9 years ago
docker pull appertly/hhvm