You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
383 B
8 lines
383 B
export RANCHER_URL=http://localhost:8888
|
|
#Create necessary folders for volume mounting
|
|
mkdir -p /docker/mysql
|
|
mkdir -p /docker/log
|
|
chmod -R 777 /docker
|
|
# install rancher cli
|
|
curl -LkSs https://github.com/rancher/cli/releases/download/v0.6.11/rancher-linux-amd64-v0.6.11.tar.gz | tar -xz && mv -f ./rancher-v0.6.11/rancher /bin/rancher && rm -rf ./rancher-v0.6.11
|
|
docker-compose up -d
|