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 to do if the docker container cannot be stopped
- Solution to the problem of unable to stop the docker container: 1. Use the "docker rm -f container id that cannot be stopped" command to forcefully delete the specified container; 2. Use the "docker network disconnect --force bridge container id" command to clean up the container The network is occupied.
- Docker 6772 2022-07-29 15:59:43
-
- Can docker be started without root permissions?
- Docker cannot be started without root permissions; using docker requires root permissions. Ordinary users without root permissions will not be able to operate docker. If ordinary users do not have root permissions, they can use sudo to obtain administrator permissions, run docker commands, or change the current user By joining the docker user group, the current user has permission to access the "Unix socket" and can execute docker related commands.
- Docker 8381 2022-07-29 15:53:23
-
- What docker images can do
- In docker, images can be used to package software operating environments and software developed based on the operating environment; images are the prerequisite for Docker to run containers, and warehouses are the place where images are stored and are the core of Docker. In addition to providing the programs required for container runtime , libraries, resources, configuration and other files, it also contains some configuration parameters prepared for runtime.
- Docker 4334 2022-07-29 15:46:58
-
- What is the use of docker image warehouse?
- In docker, the main function of the mirror warehouse is to store and distribute docker images; mirror warehouses are several places where images are stored. Mirror warehouses can be divided into remote warehouses and local warehouses. Remote warehouses can be understood as cloud warehouses and public warehouses. It is a warehouse maintained by an organization or company. The local warehouse can be understood as a private warehouse and is not open to the public.
- Docker 2931 2022-07-28 16:14:52
-
- Why is docker lightweight?
- The reason why docker is a lightweight virtualization technology is that "the docker image is small in size"; docker virtualization is built on the operating system, and different versions of the Linux kernel are basically the same, so there is no need to install the operating system kernel, you only need to Just introduce the image of the corresponding operating system, and the image contains the corresponding file system, so the size of the docker image is very small.
- Docker 3691 2022-07-28 16:05:38
-
- Can docker be installed on aix?
- Docker cannot be installed on aix; aix is a UNIX-like operating system developed by IBM based on "AT&T Unix System V". Whether docker is the ce or ee version, it can only provide limited support for the Power platform in the form of PowerLinux. Currently, it does not Installation on aix is not supported.
- Docker 2309 2022-07-27 17:12:59
-
- Does docker support centos6 installation?
- Docker supports centos6 installation; official documents require that "Linux kernel" must be at least 3.8 to install docker, and docker can only run in 64-bit systems. Since the kernel versions of "RHEL6" and "CentOS6" are 2.6, they must first Installation can only be done after upgrading the kernel of the "CentOS6" system.
- Docker 3407 2022-07-27 17:02:45
-
- Can docker replace vmware?
- docker cannot replace vmware; docker refers to the Docker container, which is an open source application container engine, and vmware virtual machine software is a virtual PC software. Although the container Docker technology has obvious advantages, the relationship between the two is not antagonistic, replacing or being replaced. , but it should be a complementary and cooperative relationship. Docker is more suitable for microservice architecture and is not suitable for relational database applications.
- Docker 3748 2022-07-26 16:18:19
-
- Does docker need to install jdk?
- The docker service itself does not need to install jdk. If the java application container is used, jdk needs to be installed in the container; the docker container does not have jdk by default. If you need to run the java program, install jdk in the host machine and install jdk in the container. The full name of jdk is "Java" Development Kit" refers to the Java language software development toolkit, which is mainly used for the development of Java applications on mobile devices and embedded devices.
- Docker 6543 2022-07-26 16:05:16
-
- What is docker container escape
- Docker container escape refers to the process and result that the attacker has obtained the command execution capability under certain permissions in the container by hijacking the containerized business logic or direct control; because docker uses isolation technology, the process in the container The outside process cannot be seen, but the outside process can see inside, so if a container can access outside resources or even obtain the permissions of the host host, this is called "Docker escape".
- Docker 4144 2022-07-25 17:13:57
-
- What is the difference between deploying with docker and deploying directly?
- The difference between deployment with docker and direct deployment: 1. Docker deployment and installation are faster and more efficient; 2. Docker deployment takes up less resources, which is MB level, while direct installation of the server takes GB level; 3. Docker uninstallation and Management is more convenient and clean, just delete containers and images directly.
- Docker 4891 2022-07-25 17:08:08
-
- Is installation of redis supported on docker?
- Installation of redis is supported on docker. The installation method is: 1. Use "$ docker pull redis:latest" to install the redis image; 2. After the installation is completed, use the "$ docker run -itd --name redis -p port number redis" command to run the redis container; 3. You can Use "$ docker ps -a" to check whether the container is successfully installed.
- Docker 2734 2022-07-25 16:59:26
-
- What to do if the docker-compose command does not exist
- Solution: 1. Use the "dnf install docker-compose" command to install "docker-compose" in the fedora system; 2. Use the "yum install docker-compose" command to install it in the "CentOS 7/RHEL7" system; 3. , debian and its variants such as Ubuntu system can be installed using the "apt-get install docker-compose" command.
- Docker 15900 2022-07-25 16:48:21
-
- Is docker an operating system?
- Docker is not an operating system; an operating system is a set of interrelated system software programs that supervise and control computer operations, use and run hardware and software resources, and provide public services to organize user interaction, while docker is a system used for development, delivery As an open platform for running applications, Docker can also manage infrastructure in the same way as applications.
- Docker 3053 2022-07-25 16:27:12
-
- What should I do if docker cannot stop deleting containers?
- Solution: 1. Use "docker ps" to find the running container ID; 2. Use "cd /var/lib/docker/container" to find the physical location of the specified container; 3. Use "service docker stop" to stop the docker service; 4. . Use "rm -rf /var/lib/docker/container/{specified id}" to delete the physical container, and then restart the docker service.
- Docker 5189 2022-07-25 16:21:35