7 lines
444 B
Bash
Executable file
7 lines
444 B
Bash
Executable file
#!/bin/bash
|
|
# Run this once: docker buildx create --use --name build --node build --driver-opt network=host
|
|
PIHOLE_VER=`cat VERSION`
|
|
docker buildx build --build-arg PIHOLE_VERSION=$PIHOLE_VER --platform linux/arm/v7,linux/arm64/v8,linux/amd64 -t cbcrowe/pihole-unbound:$PIHOLE_VER --push .
|
|
docker buildx build --build-arg PIHOLE_VERSION=$PIHOLE_VER --platform linux/arm/v7,linux/arm64/v8,linux/amd64 -t cbcrowe/pihole-unbound:latest --push .
|
|
|
|
|