19 lines
358 B
Bash
Executable File
19 lines
358 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
docker buildx build \
|
|
--progress=plain \
|
|
--tag rbvtopudding/devops:latest \
|
|
--push \
|
|
# --platform linux/arm64/v8,linux/amd64 \
|
|
# --platform linux/amd64 \
|
|
.
|
|
|
|
|
|
docker buildx build \
|
|
--progress=plain \
|
|
--tag rbvtopudding/devops:1.0.0 \
|
|
--push \
|
|
# --platform linux/arm64/v8,linux/amd64 \
|
|
# --platform linux/amd64 \
|
|
.
|