From 56e4add806dbac9b1964a950cd82e2ecfd77ffb4 Mon Sep 17 00:00:00 2001 From: Ambroise Maupate Date: Sun, 8 Sep 2024 13:25:25 +0200 Subject: [PATCH 1/2] chore: Readme style and fix makefile env var resolution --- Makefile | 4 ++-- README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index e7c0381..ce4e94a 100644 --- a/Makefile +++ b/Makefile @@ -11,8 +11,8 @@ dev-server: buildx_tag: docker run --privileged --rm tonistiigi/binfmt --install all - docker buildx build --push --platform linux/arm64/v8,linux/amd64 --tag ambroisemaupate/intervention-request:$TAG . + docker buildx build --push --platform linux/arm64/v8,linux/amd64 --tag ambroisemaupate/intervention-request:${TAG} . buildx_latest: docker run --privileged --rm tonistiigi/binfmt --install all - docker buildx build --push --platform linux/arm64/v8,linux/amd64 --tag ambroisemaupate/intervention-request:latest --tag ambroisemaupate/intervention-request:$TAG . + docker buildx build --push --platform linux/arm64/v8,linux/amd64 --tag ambroisemaupate/intervention-request:latest --tag ambroisemaupate/intervention-request:${TAG} . diff --git a/README.md b/README.md index 0c29efc..bbb92d9 100644 --- a/README.md +++ b/README.md @@ -43,8 +43,8 @@ Intervention Request is now available as a standalone Docker server to use with whatever CMS or language you need. It declares two volumes: one for your images storage and one for cached files. -- /var/www/html/web/images: you can set it as read-only to prevent any write operation -- /var/www/html/web/assets: you must set it as read-write to allow cache files to be written +- `/var/www/html/web/images`: you can set it as read-only to prevent any write operation +- `/var/www/html/web/assets`: you must set it as read-write to allow cache files to be written ```php docker pull ambroisemaupate/intervention-request; From a44a49bc1d1a0d899087b1c95e4ce9851ed146cc Mon Sep 17 00:00:00 2001 From: Ambroise Maupate Date: Sun, 8 Sep 2024 13:26:18 +0200 Subject: [PATCH 2/2] chore: Bumped --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ce4e94a..d00744c 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -TAG=4.1.0 +TAG=4.1.1 .PHONY: test dev-server test: