From 52b75a7c3da73a1785b72635d7baf6183a26de31 Mon Sep 17 00:00:00 2001 From: vaibhavqrcg <91662034+vaibhavqrcg@users.noreply.github.com> Date: Mon, 11 Sep 2023 08:04:18 +0530 Subject: [PATCH] Document apache image tag --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 99e5e59..1016145 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ To use this image, you must have [Docker](https://www.docker.com) installed. ### Inside your [Dockerfile](https://docs.docker.com/engine/reference/builder/#from) ```dockerfile -# you can use any of 7.x, 7.x-fpm, 8.x, 8.x-fpm as image tag +# you can use any of 7.x, 7.x-apache, 7.x-fpm, 8.x, 8.x-apache or 8.x-fpm as image tag # can suffix tag with -debug for an image with xdebug e.g., php-8.x-debug FROM ghcr.io/qrstuff/phackage:7.x @@ -21,7 +21,7 @@ FROM ghcr.io/qrstuff/phackage:7.x ### Directly with `docker run` ```shell -# you can use any of 7.x, 7.x-fpm, 8.x, 8.x-fpm as image tag +# you can use any of 7.x, 7.x-apache, 7.x-fpm, 8.x, 8.x-apache or 8.x-fpm as image tag # again, can suffix tag with -debug for an image with xdebug e.g., php-8.x-debug $ docker run -it --rm -v .:/app -w /app ghcr.io/qrstuff/phackage:7.x composer install