#!/bin/bash # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. version=${1} storage=${2} echo "current version: ${version}" echo "current storage: ${storage}" mkdir shenyu-${version} cd shenyu-${version} mkdir -p {shenyu-bootstrap,shenyu-admin}/{conf,logs} echo "download docker-compose configuration" curl -sSl https://raw.githubusercontent.com/apache/incubator-shenyu/${version}/shenyu-dist/shenyu-docker-compose-dist/src/main/resources/stand-alone-${storage}/docker-compose.yaml > docker-compose.yaml if [ ! -f "./docker-compose.yaml" ];then # shellcheck disable=SC2016 exit 0 fi if [ "$version" != "master" ];then # shellcheck disable=SC2016 sed -ir 's/latest/'"${version}"'/g' docker-compose.yaml fi if [ "$storage" = "mysql" ];then mkdir -p shenyu-admin/ext-lib echo "download mysql-connector.jar" (cd shenyu-admin/ext-lib && curl -o mysql-connector.jar https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.18/mysql-connector-java-8.0.18.jar) fi echo "download shenyu-admin of configuration" (cd shenyu-admin/conf/ && curl -OOO https://raw.githubusercontent.com/apache/incubator-shenyu/${version}/shenyu-admin/src/main/resources/{application-mysql.yml,logback.xml,application.yml}) echo "download shenyu-bootstrap of configuration" (cd shenyu-bootstrap/conf/ && curl -OOO https://raw.githubusercontent.com/apache/incubator-shenyu/${version}/shenyu-bootstrap/src/main/resources/{application-local.yml,logback.xml,application.yml}) docker-compose up -d