mirror of
https://github.com/bitnami/minideb.git
synced 2026-06-04 10:13:55 +08:00
44a24cda66
We build oldstable stacksmith base images as well, so build that here. Drop the namibase code as it isn't used.
21 lines
271 B
Bash
Executable File
21 lines
271 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set -u
|
|
|
|
DISTS="jessie
|
|
unstable
|
|
wheezy
|
|
"
|
|
|
|
BASENAME=jamesw/minideb
|
|
|
|
if [ -n "$DOCKER_PASSWORD" ]; then
|
|
docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD
|
|
fi
|
|
|
|
for DIST in $DISTS; do
|
|
docker push $BASENAME:$DIST
|
|
done
|
|
docker push $BASENAME:latest
|