dendrite/docker/hub/images-push.sh
2020-05-21 10:09:53 +01:00

8 lines
181 B
Bash
Executable file

#!/bin/bash
cd $(git rev-parse --show-toplevel)
COMPONENTS=$(ls docker/hub/Dockerfile.* | cut -d "." -f2)
for NAME in $COMPONENTS; do
docker push matrixdotorg/dendrite:$NAME
done