How to specify parameter variables externally in docker

How to specify parameter variables externally in docker

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:
  • Docker: Modifying the DOCKER_OPTS parameter in /etc/default/docker does not take effect
  • Implementation of modifying configuration files in Docker container
  • How to view the IP address of the Docker container
  • The whole process of deploying .net Core project using Docker on Linux server
  • Detailed installation and use of RocketMQ in Docker
  • Docker private repository management and deletion of images in local repositories
  • Example of how to upload a Docker image to a private repository
  • Detailed explanation of how to solve the problem that the docker container cannot access the host machine through IP

<<:  A brief discussion on the pitfalls of react useEffect closure

>>:  MySQL 8.0.13 manual installation tutorial

Recommend

Methods and steps for deploying GitLab environment based on Docker

Note: It is recommended that the virtual machine ...

Detailed tutorial on installing Hbase 2.3.5 on Vmware + Ubuntu18.04

Preface The previous article installed Hadoop, an...

Vue implements fuzzy query-Mysql database data

Table of contents 1. Demand 2. Implementation 3. ...

Example of writing mobile H5 to invoke APP (IOS, Android)

iOS 1. URL scheme This solution is basically for ...

In-depth analysis of the Tomcat server of Centos 7 system

Table of contents 1. The origin of tomcat 1. Tomc...

Web Design Tutorial (8): Web Page Hierarchy and Space Design

<br />Previous article: Web Design Tutorial ...

How to create components in React

Table of contents Preface Component Introduction ...

W3C Tutorial (3): W3C HTML Activities

HTML is a hybrid language used for publishing on ...

How to use the jquery editor plugin tinyMCE

Modify the simplified file size and download the ...

What is the function and writing order of the a tag pseudo class

The role of the a tag pseudo-class: ":link&qu...

Usage and best practice guide for watch in Vue3

Table of contents Preface🌟 1. API Introduction 2....

HTML Tutorial: Collection of commonly used HTML tags (4)

These introduced HTML tags do not necessarily ful...

How to deploy hbase using docker

Standalone hbase, let’s talk about it first. Inst...

Modify the maximum number of mysql connections and configuration files in docker

1. Find the mysql image docker ps 2. Enter the mi...