forked from distribution/distribution-library-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update.sh
executable file
·37 lines (26 loc) · 937 Bytes
/
update.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/bash
set -e
if [ $# -eq 0 ] ; then
echo "Usage: ./update.sh <docker/distribution tag or branch>"
exit
fi
VERSION=$1
TMPDIR=/tmp
# cd to the current directory so the script can be run from anywhere.
cd `dirname $0`
echo "Fetching and building distribution $VERSION..."
# Create a temporary directory.
TEMP=`mktemp -d /$TMPDIR/distribution.XXXXXX`
git clone -b $VERSION https://github.com/docker/distribution.git $TEMP
sed -i.bak -e "s/FROM golang/FROM scaleway\/golang/g" $TEMP/Dockerfile
cat $TEMP/Dockerfile
docker build -t distribution-builder $TEMP
# Create a dummy distribution-build container so we can run a cp against it.
ID=$(docker create distribution-builder)
# Update the local binary and config.
docker cp $ID:/go/bin/registry registry
docker cp $ID:/go/src/github.com/docker/distribution/cmd/registry/config-example.yml registry
# Cleanup.
docker rm -f $ID
docker rmi distribution-builder
echo "Done."