"Fossies" - the Fresh Open Source Software Archive 
Member "apache-log4j-2.12.4-src/log4j-spring-cloud-config/log4j-spring-cloud-config-samples/log4j-spring-cloud-config-sample-application/docker/restartApp.sh" (20 Dec 2021, 1480 Bytes) of package /linux/misc/apache-log4j-2.12.4-src.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Bash source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
1 #!/usr/bin/env bash
2 #
3 #
4 # Licensed to the Apache Software Foundation (ASF) under one
5 # or more contributor license agreements. See the NOTICE file
6 # distributed with this work for additional information
7 # regarding copyright ownership. The ASF licenses this file
8 # to you under the Apache License, Version 2.0 (the
9 # "License"); you may not use this file except in compliance
10 # with the License. You may obtain a copy of the License at
11 #
12 # http://www.apache.org/licenses/LICENSE-2.0
13 #
14 # Unless required by applicable law or agreed to in writing,
15 # software distributed under the License is distributed on an
16 # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17 # KIND, either express or implied. See the License for the
18 # specific language governing permissions and limitations
19 # under the License.
20 #
21 imageName=sampleapp
22 containerName=app-container
23 networkName=docker_sample_network
24 debug_port=5005
25 #debug_expose="-p $debug_port:$debug_port"
26 exposed_ports="-p 8080:4567 $debug_expose"
27
28 mvn clean package -DskipTests=true
29
30 docker build -t $imageName -f Dockerfile .
31
32 echo Delete old container...
33 docker rm -f $containerName
34
35 echo Run new container...
36 docker run -e "SERVICE_PARAMS=--spring.config.location=classpath:/,classpath:/application-local-docker.yml" \
37 -e "DOCKER_URI=http://socat:1234" \
38 --network=$networkName -d $exposed_ports --name $containerName -h sample $imageName
39 # --log-driver=fluentd --log-opt fluentd-address=host.docker.internal:24224 \