From 3847cf84c29ed87bc651960160d0ced8938df588 Mon Sep 17 00:00:00 2001 From: James Doyle Date: Tue, 7 Dec 2021 14:38:32 -0800 Subject: [PATCH] Added: instructions for using outside local folder --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f29b99e..0454cae 100644 --- a/README.md +++ b/README.md @@ -2,14 +2,22 @@ Docker image for PHP under build environments +[View latest container image](https://github.com/enginedigital/php-docker/pkgs/container/php-docker) + ### Building ```sh docker build -t php81 . ``` -### Running +### Running Locally ```sh docker run -it --volume="$PWD:/app" --workdir="/app" --entrypoint=/bin/bash php81 ``` + +### Running Remotely + +```sh +docker run -it --volume="$PWD:/app" --workdir="/app" --entrypoint=/bin/bash ghcr.io/enginedigital/php-docker:main +```