forked from RobLoach/drush-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
27 lines (25 loc) · 930 Bytes
/
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
build:
docker build -t drush/drush:base base
docker build -t drush/drush:9 9
docker build -t drush/drush:8 8
docker build -t drush/drush 8
docker build -t drush/drush:7 7
docker build -t drush/drush:backdrop backdrop
docker build -t drush/drush:base-alpine base/alpine
docker build -t drush/drush:9-alpine 9/alpine
docker build -t drush/drush:8-alpine 8/alpine
docker build -t drush/drush:7-alpine 7/alpine
docker build -t drush/drush:backdrop-alpine backdrop/alpine
version:
docker run drush/drush --version
docker run drush/drush:9 --version
docker run drush/drush:8 --version
docker run drush/drush:7 --version
docker run drush/drush:backdrop --version
docker run drush/drush:alpine --version
docker run drush/drush:9-alpine --drush-launcher-version
docker run drush/drush:8-alpine --version
docker run drush/drush:7-alpine --version
docker run drush/drush:backdrop-alpine --version
test:
@make version