mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-20 13:23:22 -06:00
8 lines
181 B
Bash
Executable file
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 |