-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
49 lines (43 loc) · 2.96 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
build: build-php
build-nc: build-php-nc
publish: publish-php
build-php:
docker build -f ./Dockerfile --build-arg PHP_TAG_VERSION=8.2 -t letsdockerize/php:8.2 .
docker build -f ./Dockerfile --build-arg PHP_TAG_VERSION=8.1 -t letsdockerize/php:8.1 .
docker build -f ./Dockerfile --build-arg PHP_TAG_VERSION=8.0 -t letsdockerize/php:8.0 .
docker build -f ./Dockerfile --build-arg PHP_TAG_VERSION=7.4 -t letsdockerize/php:7.4 .
docker build -f ./Dockerfile --build-arg PHP_TAG_VERSION=7.3 -t letsdockerize/php:7.3 .
docker build -f ./Dockerfile --build-arg PHP_TAG_VERSION=7.2 -t letsdockerize/php:7.2 .
docker build -f ./Dockerfile --build-arg PHP_TAG_VERSION=7.1 -t letsdockerize/php:7.1 .
docker build -f ./Dockerfile --build-arg PHP_TAG_VERSION=7.0 -t letsdockerize/php:7.0 .
docker build -f ./Dockerfile --build-arg PHP_TAG_VERSION=5.6 -t letsdockerize/php:5.6 .
build-php-nc:
docker build --no-cache --pull -f ./Dockerfile --build-arg PHP_TAG_VERSION=8.2 -t letsdockerize/php:8.2 .
docker build --no-cache --pull -f ./Dockerfile --build-arg PHP_TAG_VERSION=8.1 -t letsdockerize/php:8.1 .
docker build --no-cache --pull -f ./Dockerfile --build-arg PHP_TAG_VERSION=8.0 -t letsdockerize/php:8.0 .
docker build --no-cache --pull -f ./Dockerfile --build-arg PHP_TAG_VERSION=7.4 -t letsdockerize/php:7.4 .
docker build --no-cache --pull -f ./Dockerfile --build-arg PHP_TAG_VERSION=7.3 -t letsdockerize/php:7.3 .
docker build --no-cache --pull -f ./Dockerfile --build-arg PHP_TAG_VERSION=7.2 -t letsdockerize/php:7.2 .
docker build --no-cache --pull -f ./Dockerfile --build-arg PHP_TAG_VERSION=7.1 -t letsdockerize/php:7.1 .
docker build --no-cache --pull -f ./Dockerfile --build-arg PHP_TAG_VERSION=7.0 -t letsdockerize/php:7.0 .
docker build --no-cache --pull -f ./Dockerfile --build-arg PHP_TAG_VERSION=5.6 -t letsdockerize/php:5.6 .
publish-php:
docker push letsdockerize/php:8.2
docker push letsdockerize/php:8.1
docker push letsdockerize/php:8.0
docker push letsdockerize/php:7.4
docker push letsdockerize/php:7.3
docker push letsdockerize/php:7.2
docker push letsdockerize/php:7.1
docker push letsdockerize/php:7.0
docker push letsdockerize/php:5.6
dev:
docker build -f ./Dockerfile-dev --build-arg PHP_TAG_VERSION=8.2 -t letsdockerize/php:8.2 .
docker build -f ./Dockerfile-dev --build-arg PHP_TAG_VERSION=8.1 -t letsdockerize/php:8.1 .
docker build -f ./Dockerfile-dev --build-arg PHP_TAG_VERSION=8.0 -t letsdockerize/php:8.0 .
docker build -f ./Dockerfile-dev --build-arg PHP_TAG_VERSION=7.0 -t letsdockerize/php:7.4 .
docker build -f ./Dockerfile-dev --build-arg PHP_TAG_VERSION=7.1 -t letsdockerize/php:7.3 .
docker build -f ./Dockerfile-dev --build-arg PHP_TAG_VERSION=7.2 -t letsdockerize/php:7.2 .
docker build -f ./Dockerfile-dev --build-arg PHP_TAG_VERSION=7.3 -t letsdockerize/php:7.1 .
docker build -f ./Dockerfile-dev --build-arg PHP_TAG_VERSION=7.4 -t letsdockerize/php:7.0 .
docker build -f ./Dockerfile-dev --build-arg PHP_TAG_VERSION=5.6 -t letsdockerize/php:5.6 .