File tree 2 files changed +6
-8
lines changed
2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 55
55
context : .
56
56
file : Containerfile
57
57
push : ${{ github.event_name != 'pull_request' }}
58
- tags : ${{ steps.meta .outputs.tags }}
59
- labels : ${{ steps.meta .outputs.labels }}
58
+ tags : ${{ steps.metadata .outputs.tags }}
59
+ labels : ${{ steps.metadata .outputs.labels }}
60
60
target : ${{ matrix.context.target }}
61
61
62
62
release :
Original file line number Diff line number Diff line change @@ -7,21 +7,19 @@ Arguments
7
7
---------
8
8
9
9
Arguments that can be set while building:
10
- - ` DRUID_VERSION ` : You can also change the default value in the Dockerfiles .
10
+ - ` DRUID_VERSION ` : You can also change the default value in the Containerfile .
11
11
12
12
Building
13
13
--------
14
14
15
15
```
16
- DRUID_VERSION=XXX # 0.22.1 for example.
16
+ export DRUID_VERSION=XXX # 26.0.0 for example.
17
17
18
18
# For the micro image
19
- docker build -t wiremind/mino-druid:micro-${DRUID_VERSION} --build-arg DRUID_VERSION=${DRUID_VERSION} -f ./Dockerfile .
20
- docker push wiremind/mino-druid:micro-${DRUID_VERSION}
19
+ docker build -t micro-druid:${DRUID_VERSION}-micro --build-arg DRUID_VERSION=${DRUID_VERSION} -f ./Containerfile --target druid-micro .
21
20
22
21
# For the nano image
23
- docker build -t wiremind/mino-druid:nano-${DRUID_VERSION} --build-arg DRUID_VERSION=${DRUID_VERSION} -f ./Dockerfile.nano .
24
- docker push wiremind/mino-druid:nano-${DRUID_VERSION}
22
+ docker build -t micro-druid:${DRUID_VERSION}-nano --build-arg DRUID_VERSION=${DRUID_VERSION} -f ./Containerfile --target druid-nano .
25
23
```
26
24
27
25
Required hardware
You can’t perform that action at this time.
0 commit comments