Docker container with psysh ready to help the php developers to test codes quickly.
- Alpine 3.10
- PHP 7.3
- psysh
By docker pull
docker pull c0dehappy/psysh
Or git clone the repository
git clone https://github.com/c0dehappy/docker-psysh.git
Create a docker image.
docker build -t psysh .
Run the image to enter in terminal:
$ docker run -ti psysh
Psy Shell v0.9.9 (PHP 7.3.10 — cli) by Justin Hileman
>>> echo 'Hello world';
Hello world⏎
>>>
Easy to code!!