Ubuntu docker image with phpenv. Use different versions of PHP in a easy way.
https://hub.docker.com/r/jrobinsonc/phpenv/
docker pull jrobinsonc/phpenv
docker run -it jrobinsonc/phpenv /bin/bash
You can list the available PHP releases by running:
phpenv install --releases
To build one of the listed releases run:
phpenv install php-5.3.20
To enable one specific version of PHP run:
phpenv global 5.3.20
For more details please visit phpenv usage.
Released under the MIT license.