Common docker commands

Docker command Docker Basic Command 1. View docker information (version, info) # View docker version $docker version # Display information about docker system $docker info 2. Operations on images (search, pull, images, rmi, history) # Retrieving image s $docker search image_name # Download image $docker pull image_ ...

Posted by Cugel on Wed, 19 Jan 2022 18:24:10 +0100

Reason for Cannot execute binary file

1. Write at the beginning Question: the author uses kaniko to build a docker image, and the basic image is based on Alpine. After the build, run the compiled go binary. Always prompt the following error: # ./example.exe sh: ./example.exe: not found Example is obvious here Exe file exists. It is suspected that sh has a problem. The aut ...

Posted by Napster on Tue, 18 Jan 2022 19:22:37 +0100

Docker introduction learning notes

Docker installation 1, Install Docker Help documentation 1. Uninstall old version yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ docker-latest-logrotate \ docker-logrotate \ docker-engine 2. Required installatio ...

Posted by daniminas on Tue, 18 Jan 2022 15:30:23 +0100

Build node exporter + Prometheus + grafana server monitoring platform based on Docker

summary Prometheus: container monitoring system. https://prometheus.io https://github.com/prometheusGrafana: it is an open source measurement analysis and visualization system. https://grafana.com/grafananode_ The exporter plug-in collects server data. https://github.com/prometheus/node_exporter/ Idea: node_ The exporter plug-in collects se ...

Posted by FlipinMonkeyPie on Tue, 18 Jan 2022 09:03:31 +0100

How to gracefully pull private images from Harbor?

Previously, I shared the Harbor series articles in my column Harbor dictionary. In this issue, we will continue to share how to pull private images in Harbor in k8s's container. We can pull public images in Harbor at will, but some private images cannot be pulled directly. We can use the Secret resource object to pull private images. The foll ...

Posted by nonaguy on Tue, 18 Jan 2022 08:20:35 +0100

docker basic management commands

catalogue 1, docker basic commands 1. View images - docker images 2. View all status containers - docker ps -a 3. docker -- run instruction Workflow 4. View docker version command - docker -v 5. View docker information - docker 6. Docker help command document -- docker --help 2, docker image operation 1. Search image (public warehou ...

Posted by Jakei on Sun, 16 Jan 2022 20:38:35 +0100

Data science and big data technology -- cloud computing ● virtualization course final examination paper and brief answer

  comprehensive review of virtual cloud computing   review question 1:   I. multiple choice questions (3 points for each question, 48 points in total)    1. (multiple choice) common types of virtualization are ABCD.   (A) server virtualization   (B) desktop virtualization   (C) storage virtualizati ...

Posted by almightyegg on Sun, 16 Jan 2022 20:31:41 +0100

docker basic network - various uses and differences of host, none and bridge

docker network Docker network can be divided into container network on a single host and network across multiple hosts docker network type View docker's native network [root@docker01 ~]# docker network ls NETWORK ID NAME DRIVER SCOPE 68f4c1f9f020 bridge bridge local ...

Posted by Elangler on Sun, 16 Jan 2022 19:03:29 +0100

Build project management and code hosting platform gitlab in docker environment under Centos7 system

summary GitLab is an open source project for warehouse management system. It uses Git as a code management tool and builds a Web service on this basis. Implement a self managed Git project repository, which can access public or private projects through the Web interface. Ability to browse source code, manage defects and comments. It can manage ...

Posted by jammer on Sun, 16 Jan 2022 14:09:23 +0100

centos mounts cos cloud storage server, and centos file directory mounts docker to realize sharing operation steps

Preparations: Tencent cloud configuration (at present, individuals can apply for 6-month free file storage server), centos 7, dokcer on centos, Git on centos Tencent cloud configuration: accessKey, secretKey, bucketName, regionName centos: Git installation (pull cosfs source code) Operation on Cos The cos cloud storage bucket creates a new ...

Posted by JDBurnZ on Sun, 16 Jan 2022 08:45:28 +0100