Initial docs

This commit is contained in:
lvuch
2018-04-12 13:59:16 -07:00
commit d1752b4c7c
195 changed files with 131650 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/bin/bash
# cd to app root
CWD=$(dirname $0)
if [[ `basename $(pwd)` = 'scripts' ]]; then
cd ../
else
cd `dirname $CWD`
fi
echo "Pulling Theme..." && \
docker pull rancherlabs/website-theme:latest && \
echo "Building Image..." && \
docker build -t rancherlabs/website:latest . && \
echo "Pushing Image..." && \
docker push rancherlabs/website:latest && \
echo "OK"