We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9ee90d commit 42b0de4Copy full SHA for 42b0de4
Makefile
@@ -18,6 +18,13 @@ build-postgresql:
18
done
19
docker build php${LATEST_VERSION}/postgresql --build-arg PRESTISSIMO_VERSION=$$PRESTISSIMO_VERSION --build-arg BUILD_DATE=$$BUILD_DATE -t $(REPOSITORY):latest-postgresql
20
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
+
28
.PHONY: push-mysql
29
push-mysql:
30
for VERSION in $(VERSIONS); do \
0 commit comments