Skip to content

Commit 42b0de4

Browse files
committed
Added a Makefile shortcut to pull all php images more easily
1 parent d9ee90d commit 42b0de4

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@ build-postgresql:
1818
done
1919
docker build php${LATEST_VERSION}/postgresql --build-arg PRESTISSIMO_VERSION=$$PRESTISSIMO_VERSION --build-arg BUILD_DATE=$$BUILD_DATE -t $(REPOSITORY):latest-postgresql
2020

21+
.PHONY: pull-php
22+
pull-php:
23+
for VERSION in $(VERSIONS); do \
24+
docker pull php:$$VERSION-cli; \
25+
done
26+
docker pull php:latest
27+
2128
.PHONY: push-mysql
2229
push-mysql:
2330
for VERSION in $(VERSIONS); do \

0 commit comments

Comments
 (0)