mirror of
https://github.com/bitnami/minideb.git
synced 2026-06-04 10:13:55 +08:00
16 lines
239 B
Bash
Executable File
16 lines
239 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DISTS="jessie
|
|
unstable
|
|
"
|
|
|
|
BASENAME=jamesw/minideb
|
|
NAMINAME=jamesw/mininami
|
|
|
|
for DIST in $DISTS; do
|
|
docker push $BASENAME:$DIST
|
|
docker push $NAMINAME:$DIST
|
|
done
|
|
docker push $BASENAME:latest
|
|
docker push $NAMINAME:latest
|