Update Registry to unpack new repo

This commit is contained in:
Mike Reeves
2020-01-23 10:13:20 -05:00
parent 005aa35918
commit 71edddd846

View File

@@ -0,0 +1,13 @@
#!/bin/bash
VERSION=1.1.4
TARBALL=/nsm/docker-registry/docker/so-dockers-$VERSION.tar
# See if the tarball is there. If so do soemthing otherwise peace out.
if [ -f "$TARBALL" ]; then
cd /nsm/docker-registry/docker
tar xvf so-dockers-$VERSION.tar
rm $TARBALL
else
exit
fi