Docker installation and deployment example on Linux

Docker installation and deployment example on Linux

After reading the following article, you can deploy the project on the server. You don’t need to install tomcat, jdk, mysql and other servers locally. You can solve it with one click through docker.

Install Docker

$ apt install docker.io -y

If the resource cannot be found, you need to update the resource library. The command is:

$ sudo apt-get update && sudo apt-get upgrade

Check the Docker version

$ docker -v

For more Docker-related knowledge, please visit: https://www.docker.com/

Docker installs mysql

$ docker pull mysql

Install Tomcat on Docker

$ docker pull tomcat

Launch the instance

After docker pulls the above two container images, the image list can be obtained through the following command

$ docker images -a

You can see the two images that were pulled to the local computer. Next, start the tomcat and mysql instances respectively. The commands are as follows:
Start a Docker instance

$ sudo docker run --name image_nick_name image_name:image_tag

Start mysql:

$ sudo docker run --name mysql -p 3400:3306 -e MYSQL_ROOT_PASSWORD=123456 -d mysql:latest

Start tomcat:

$ sudo docker run -it -d --name tomcat tomcat:latest

After startup, you can successfully access tomcat and mysql on the server
Connect to mysql:

$ mysql -u root -h 114.215.29.39 -P 3400 -p123456

Access ip: http://ip:10050/

This is the end of this article about the installation and deployment examples of Docker on Linux. For more information about the installation and deployment of Docker on Linux, 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:
  • Install Docker environment in Linux environment (no pitfalls)
  • Steps to install MySQL using Docker under Linux
  • Golang study notes: Install Go1.15 version (win/linux/macos/docker installation)
  • Detailed explanation of how to install mongodb using docker on linux
  • The process of installing Docker in Linux system

<<:  Solution to the problem of invalid line-height setting in CSS

>>:  Solution to find all child rows for a given parent row in MySQL

Recommend

How to use cursor triggers in MySQL

cursor The set of rows returned by the select que...

WeChat applet selects the image control

This article example shares the specific code for...

A brief talk about Mysql index and redis jump table

summary During the interview, when discussing abo...

Detailed explanation of virtual DOM and diff algorithm in react

The role of virtual DOM First of all, we need to ...

SQL implementation of LeetCode (182. Duplicate mailboxes)

[LeetCode] 182.Duplicate Emails Write a SQL query...

About the IE label LI text wrapping problem

I struggled with this for a long time, and after s...

Solution to CSS flex-basis text overflow problem

The insignificant flex-basis has caused a lot of ...

Pure CSS code to achieve flow and dynamic line effects

Ideas: An outer box sets the background; an inner...

25 div+css programming tips and tricks

1. The ul tag has a padding value by default in M...

A brief discussion on using virtual lists to optimize tables in el-table

Table of contents Preface Solution Specific imple...

Add unlimited fonts to your website with Google Web Fonts

For a long time, website development was hampered...

MySQL 5.7.25 installation and configuration method graphic tutorial

There are two types of MySQL installation files, ...

Data Structure - Tree (III): Multi-way Search Tree B-tree, B+ tree

Multi-way search tree Height of a complete binary...

Example code for CSS to achieve horizontal lines on both sides of the text

This article introduces the sample code of CSS to...

MySQL scheduled backup solution (using Linux crontab)

Preface Although some love in this world has a pr...