This article mainly introduces how to specify parameter variables externally in Docker. The example code in this article is very detailed and has a certain reference value for everyone's study or work. Friends in need can refer to it. Dockerfile: FROM frolvlad/alpine-oraclejre8:slim VOLUME /tmp ADD app.jar /app.jar #COPY agent/ /usr/local/skyagent/ WORKDIR /opt COPY docker-entrypoint.sh . ENV AP_ENV=$AP_ENV EXPOSE 7015 ENV JAVA_OPTS=$JAVA_OPTS ENTRYPOINT [ "sh", "-c", "java $JAVA_OPTS -Djava.security.egd=file:/dev/./urandom -jar /app.jar" ] Give variables in configuration: application.properties sea=${sea123} shan=${shan123} For Test: @RestController public class WebController { @Value("${sea}") private String sea; @Value("${shan}") private String shan; @GetMapping("/sea") public String test() { return sea+shan; } } Run the image: sudo docker run -it -p 9999:9999 -e 'sea=sea_test' -e 'shan=shan_test' testproperties004 The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: A brief discussion on the pitfalls of react useEffect closure
>>: MySQL 8.0.13 manual installation tutorial
Note: It is recommended that the virtual machine ...
Preface The previous article installed Hadoop, an...
Table of contents 1. Demand 2. Implementation 3. ...
iOS 1. URL scheme This solution is basically for ...
Table of contents 1. The origin of tomcat 1. Tomc...
<br />Previous article: Web Design Tutorial ...
Table of contents Preface Component Introduction ...
HTML is a hybrid language used for publishing on ...
Modify the simplified file size and download the ...
The role of the a tag pseudo-class: ":link&qu...
Preface <br />In the previous article "...
Table of contents Preface🌟 1. API Introduction 2....
These introduced HTML tags do not necessarily ful...
Standalone hbase, let’s talk about it first. Inst...
1. Find the mysql image docker ps 2. Enter the mi...