mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-06 07:12:09 +01:00
9 lines
202 B
Bash
Executable file
9 lines
202 B
Bash
Executable file
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
ARCH=$(uname -m)
|
|
|
|
for image in openwebrx-rtlsdr openwebrx-sdrplay openwebrx-hackrf openwebrx-airspy openwebrx-full openwebrx; do
|
|
docker push jketterl/$image:$ARCH
|
|
done
|