1. Click Terminal below in IDEA and enter mvn clean install When the following figure appears, it indicates success (the premise is that Maven must be installed locally and the Maven environment variables must be configured) The packaged jar is in the target directory 2. Then create a new Dockerfile file with the following content 3. Build the image: Place the Dockerfile and project jar package in the same directory on the server, and then enter the directory Enter: docker build -t app . (note there is a dot at the end, app is the custom image name) to build the image Check if the image exists: docker images 4. Run the image just created: docker run -d -p 8888:8081 --name app app illustrate: -d runs the container in the background; --name specifies the container name; -p specifies the port where the service runs (the first one is the host mapping port number, and the second one is the project port number) Open the browser IP:8888 to view 5. View container logs: docker logs -f -t --tail 500 app 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:
|
<<: Detailed explanation of mysql transaction management operations
>>: JavaScript Objects (details)
1. What is the cardinality? Cardinality refers to...
By default, the width and height of the cell are ...
Docker only maps ports to IPv6 but not to IPv4 St...
history route History mode refers to the mode of ...
The Meta tag is an auxiliary tag in the head area...
join() method: connects all elements in an array ...
Table of contents No slots Vue2.x Slots With slot...
Table of contents Preface React Functional Compon...
In enterprises, database high availability has al...
Use CSS filter to write mouse over effect <div...
Run the command: glxinfo | grep rendering If the ...
01PARTCoreWebApi tutorial local demonstration env...
Preface We all know that MySQL uses server-id to ...
Table of contents MySQL multiple instances Multi-...
Nginx (engine x) is a high-performance HTTP and r...