GitHub - daper/docker-alpine-php: Alpine Linux based Docker images for PHP 5.5, 5.6 and 7.0
Docker PHP Alpine-linux based image with diferent versions and extensions. The repo contains 4 versions of PHP (5.5, 5.6, 7.0 and 7.1), each one has two modalities from two branches (master and tcp-socket). Main images listen on a unix-socket under /var/run, with the name of phpXX.sock where XX can be 55, 56, 70 or 71 depending of version you choose. The other modality from branch tcp-socket; fpm process listens on tcp-socket (9000).
docker run -d -v /var/run -v /path/to/site.conf:/etc/nginx/conf.d/default.conf -p 80:80 --name nginx nginx:alpine
docker run -d --volumes-from nginx --name php daper/php