mirror of https://github.com/rancher/docs.git
16 lines
280 B
Bash
Executable File
16 lines
280 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# cd to app root
|
|
CWD=$(dirname $0)
|
|
if [[ `basename $(pwd)` = 'scripts' ]]; then
|
|
cd ../
|
|
else
|
|
cd `dirname $CWD`
|
|
fi
|
|
|
|
echo "Building Image..." && \
|
|
docker build -t rancher/docs:latest . && \
|
|
echo "Pushing Image..." && \
|
|
docker push rancher/docs:latest && \
|
|
echo "OK"
|