mirror of
https://github.com/rancher/rancher-docs.git
synced 2026-09-25 12:38:05 +00:00
Initial docs
This commit is contained in:
Executable
+17
@@ -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"
|
||||
Reference in New Issue
Block a user