How to turn a jar package into a docker container

How to turn a jar package into a docker container

How to turn a jar package into a docker container

1. First download the java image

docker pull java:8

2. Create a new working directory and copy the jar package into it

mkdir mydocker
cd mydocker
copy /xxx/app.jar ./

3. Create a new Dockerfile

vi Dockerfile

The file contents are as follows:

FROM java:8
MAINTAINER freebytes.net
WORKDIR /test
COPY app.jar /test/app.jar
CMD ["java","-jar","app.jar","-Dfile.encoding=utf-8"]

Code Explanation

  • FROM java:8 —— indicates that the image is built based on java:8
  • MAINTAINER author——Indicates that the author of the build is author
  • WORKDIR /test ——Indicates that the working directory in the specified container is /test
  • COPY - copy app.jar to the container working directory /test
  • CMD - executes the java command to start the jar.

4. Build an image

docker build -t app-docker .

Indicates building an image from the current directory. This command will package all the files in the current directory and send them to the Docker engine server, and then build the image according to the Dockerfile on the server.

5. After the build is successful, start the container

docker run -it -p 9013:8088 –name app -d my-docker

According to the Dockerfile configuration just now, after the container is generated, a test directory will inevitably be generated in the container root directory, and the app.jar file will exist in the test directory. The container executes the instructions defined by CMD based on the test directory.

Can enter the container to view

docker exec -it app /bin/bash

This is the end of this article about how to turn a jar package into a docker container. For more information about how to turn a jar package into a docker container, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of how to deploy SpringBoot in docker and replace jar packages
  • Docker solves the problem that JDK's jmap and other commands cannot be used in openjdk containers
  • How to install openjdk in docker and run the jar package

<<:  Solve MySQL login error: 'Access denied for user 'root'@'localhost'

>>:  Detailed explanation of the abbreviation of state in react

Recommend

Comparison of storage engines supported by MySQL database

Table of contents Storage Engine Storage engines ...

How to deploy Spring Boot using Docker

The development of Docker technology provides a m...

MySQL index principle and usage example analysis

This article uses examples to illustrate the prin...

The neglected special effects of META tags (page transition effects)

Using js in web design can achieve many page effec...

HTML simple web form creation example introduction

<input> is used to collect user information ...

Vue implements tab navigation bar and supports left and right sliding function

This article mainly introduces: using Vue to impl...

How to use ssh tunnel to connect to mysql server

Preface In some cases, we only know the intranet ...

How to install setup.py program in linux

First execute the command: [root@mini61 setuptool...

Box-shadow and drop-shadow to achieve irregular projection example code

When we want to add a shadow to a rectangle or ot...

How to use JSX in Vue

What is JSX JSX is a syntax extension of Javascri...

mysql having usage analysis

Usage of having The having clause allows us to fi...

Mysql some complex sql statements (query and delete duplicate rows)

1. Find duplicate rows SELECT * FROM blog_user_re...

Example of implementing load balancing with Nginx+SpringBoot

Introduction to Load Balancing Before introducing...

Vue implements sample code to disable browser from remembering password function

Find information Some methods found on the Intern...