Ten minutes to understand docker

1, What is docker? wiki introduction Docker is an open source software and an open platform for developing, shipping and running applications. Docker allows users to separate applications in Infrastructure to form smaller particles (containers), so as to improve the speed of software delivery. Docker containers are similar to virtu ...

Posted by QSDragon on Sat, 27 Nov 2021 22:47:07 -0800

[docker compose] from building an image to running a Java project with one click

Let's start with a question. How many steps does it take for a new machine to run a regular spring boot project? 1. Download and configure java environment, mysql environment and redis environment (step 6) 2. Initialize mysql database and import sql files (step 2) 3. Download the jar package and start (step 2) As like as two peas Ling Wan ...

Posted by ryochiji on Wed, 17 Nov 2021 20:19:44 -0800

Docker / docker compose instructions [notes]

Docker 1, Overview The deployment environment (Redis, ES, Hadoop...) is required to publish a project. It is very troublesome to redeploy the environment on the server and cannot cross platform. Therefore, it is processed by Docker with Windows, and finally released to Linux. Traditional: development jar, operation and maintenance deplo ...

Posted by monloi on Wed, 17 Nov 2021 03:29:33 -0800

Docker compose container rapid stand-alone orchestration

catalogue 1, Docker compose overview 2, YAML file format and preparation considerations 3, Common fields for Docker Compose configuration 4, Docker Compose common commands 5, Docker Compose file structure 6, Docker Compose environment installation 7, Use compose orchestration Installing and running nginx containers using compose orche ...

Posted by m0rpheu5 on Mon, 18 Oct 2021 16:12:36 -0700

Detail docker compose, consul!!

Docker Compose, predecessor of Fig, is a tool for defining and running multiple Docker containers. Using Docker Compose no longer requires shell I scripts to start containers Docker Compose is ideal for scenarios where multiple containers are used together for development. Consul is an open source tool from HashiCor that enables service discov ...

Posted by skippy111 on Wed, 08 Sep 2021 15:14:09 -0700