current location:Home > Technical Articles > Operation and Maintenance > Docker
- Direction:
- All web3.0 Backend Development Web Front-end Database Operation and Maintenance Development Tools PHP Framework Daily Programming WeChat Applet Common Problem Other Tech CMS Tutorial Java System Tutorial Computer Tutorials Hardware Tutorial Mobile Tutorial Software Tutorial Mobile Game Tutorial
- Classify:
-
- What is docker used for?
- The purpose of docker is as a software containerization platform that allows developers to build an application, package it into a container together with its dependent environment, and then easily publish and apply it to any platform.
- Docker 4915 2020-07-28 10:46:56
-
- How does docker deploy elk?
- How to deploy elk with docker: first download and use the elk integrated image; then start it; finally access it, the code is [[root@centos-mq ~]# sysctl -p], enter in the browser: [http://10.10.0.13: 5601】That’s it.
- Docker 2879 2020-07-28 10:35:24
-
- How to install docker in win7?
- How to install docker in win7: first open the docker official website and enter the document interface; then click the [install toolbox on windows] button and obtain the installation package; then click the [docker quartstart] button; and finally select [start.sh].
- Docker 5113 2020-07-27 11:42:18
-
- How to delete docker data volume?
- How to delete docker data volume: If you need to remove the data volume while deleting the container, you can use the [docker rm -v] command when deleting the container, the code is [docker volume rm <volume name>].
- Docker 6149 2020-07-27 11:26:24
-
- What is the difference between entrypoint and cmd under docker?
- The difference between entrypoint and cmd under docker is: 1. The CMD instruction runs an executable file and provides parameters. Parameters can be specified for ENTRYPOINT; 2. The ENTRYPOINT instruction itself can also contain parameters, and the changed parameters will not be overwritten.
- Docker 10496 2020-07-27 11:20:40
-
- How to make a docker image file?
- How to make a docker image file: first create a Dockerfile; then build the docker image, the code is [docker build -t my-test-image]; finally run the container and use a browser to access the test.
- Docker 2786 2020-07-27 10:47:30
-
- What is Docker virtualization technology?
- Docker virtualization technology allows developers to package applications and dependency packages into a lightweight, portable container, and then publish them to any popular Linux machine. It can also implement virtualization and integrate the application with the basics. Architectural separation allows rapid delivery of software.
- Docker 7996 2020-07-27 10:22:53
-
- Quickly understand the Docker architecture
- This article mainly introduces the relevant information of Docker architecture. The explanation in the article is very detailed to help everyone start learning docker. Interested friends can learn more
- Docker 2264 2020-07-23 17:39:12
-
- How to connect to github in dockerhub to automatically build the image?
- How to automatically build an image by connecting to github in dockerhub: first click connect to configure the connection, and click to authorize docker; then create a new project and select the warehouse; then create and associate a branch; and finally wait for automatic compilation.
- Docker 4156 2020-07-22 15:33:06
-
- How to manually download and install jdk in docker?
- How to manually download and install jdk with docker: first place the tar package in the docker folder and create a new folder share in the root directory; then start docker and load the docker image; finally start the container and enter the [/share] path. Just unzip the jdk installation package.
- Docker 4299 2020-07-22 15:15:04
-
- What does docker do?
- The functions of docker are: 1. Better utilization of resources; 2. Customization for microservices; 3. Convenient transplantation between cloud service providers; 4. Convenient use of APIs; 5. Convenient technological innovation.
- Docker 14586 2020-07-22 11:52:09
-
- Detailed introduction to the build command in docker
- The build command in docker is used to build a Docker image based on the given Dockerfile and context. Command format: [docker build [OPTIONS] <PATH | URL | ->].
- Docker 9511 2020-07-20 17:38:55
-
- What does Docker do?
- Docker is an open source application container engine that allows developers to package applications and dependency packages into a portable container, and then publish them to any popular Linux machine. It can also be virtualized. The container completely uses a sandbox mechanism. There will not be any interface between them.
- Docker 3775 2020-07-18 11:47:27
-
- What is the difference between stop and rm commands in docker?
- Difference: The stop command is used to stop the container; and the rm command is a deletion command. If used directly, the corresponding container will be deleted. Note: docker stop first sends a SIGTERM signal to the container, allowing it to perform some operations within a certain period of time. If the container does not stop within this period, it sends a SIGKILL signal to forcibly kill the container.
- Docker 6363 2020-07-17 14:00:13
-
- What is the difference between docker import and docker load?
- Difference: The docker load command imports the image library storage file to the local image library; the docker import command imports a container snapshot into the local image library. Container snapshots will discard all history and metadata information, while image storage files will retain complete records and will be larger in size.
- Docker 12290 2020-07-17 13:42:48