Summary of Docker common commands and tips

Summary of Docker common commands and tips

Installation Script

Ubuntu / CentOS

There seems to be a problem with the Debian installation, and the installation source problem needs to be solved.

curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh --mirror Aliyun / AzureChinaCloud

If you are using an overseas cloud server vendor such as AWS or GCP, you do not need to add --mirror.

After Centos is finished running, you still need to manually sudo systemctl start docker.service, otherwise it will prompt errors such as docker not started

Log related

Grep String

Correct approach: docker logs nginx 2>&1 | grep "127."

For example, to view the token of Jupyter Notebook: docker logs notebook 2>&1 | grep "token"

Other supported parameters

-f : similar to tail -f command

--since: Start from a certain timestamp, such as 2013-01-02T13:23:37. Relative time is also supported, such as: 42m

--until : Similar to above, but in reverse.

-t, --timestamp : Display timestamp

--tail N (default all) : Display the last few lines of data

Mounting techniques <br /> For example, Grafana and others have some files built into the docker image. If you mount the corresponding directory directly and the host directory is empty, then the docker internal

The directory will be overwritten. How to deal with this situation?

Simple and crude method 1: (idea only)

Run it once, then copy it using the docker cp command

Then delete the docker container, copy the file to the corresponding directory, and then mount it.

A more elegant method 2:

Take starting ClickHouse as an example

# Step 1.1: Create a docker volume (Purpose: Expose the configuration of CH Server)
docker volume create --driver local \
--opt type=none \
--opt device=/home/centos/workspace/clickhouse/configs \
--opt o=bind \
ch-server-configs

# Step 1.2: Create a volume and mount the database data docker volume create --driver local \
--opt type=none \
--opt device=/home/centos/workspace/clickhouse/data \
--opt o=bind \
ch-server-data

# Step 2: Start (Note: When there is a lot of stored data, the second startup will take a long time to initialize. Attempting to connect before initialization is complete will fail.)
sudo docker run -d --name mkt-ch-server \
-v ch-server-configs:/etc/clickhouse-server \
-v ch-server-data:/var/lib/clickhouse \
--restart always \
-p 9000:9000 -p 8123:8123 \
--ulimit nofile=262144:262144 yandex/clickhouse-server

In this way, the configuration file that comes with the Docker image will not be cleared when it is mounted for the first time.

Scheduled tasks

For example, MySQL needs to export data backup regularly. This operation is best done using crond on the host machine.

0 1 * * * docker exec mysqldump xxxx

Common Docker images and their installation commands

MySQL

Install

docker run --name some-mysql --restart always\
-v /my/own/datadir:/var/lib/mysql\
-e MYSQL_ROOT_PASSWORD=my-secret-pw -d mysql:tag

Dump data

Method 1: Already have a mysql docker container locally

The following command is for mysql inside docker, you can also directly specify the parameter dump remote mysql

docker exec some-mysql sh -c 'exec mysqldump --all-databases -uroot -p"$MYSQL_ROOT_PASSWORD"' > /path-to-data/all-databases.sql

Method 2: There is no mysql docker container locally

# Delete after use and enter the password in the command line prompt docker run -i --rm mysql:5.7 mysqldump --all-databases\
-h 172.17.0.1 -uroot -p | gzip -9 > /home/centos/workspace/mysql-data/backup.sql.gz

Due to editor reasons, the above > is not displayed correctly

Restore Data

Still refer to the above Dump method, but the command line tool is changed to mysql

Python Proxy

You'll need to do some crawling. Make full use of the IP of the cloud server to act as a crawler proxy. The simplest way to build a crawler proxy is currently found:

docker run --name py-proxy -d --restart always -p 8899:8899 abhinavsingh/proxy.py

Notice:

  1. As of now, the python script of this docker image is still relatively old and does not support basic auth. If you need basic auth, you need to update the python file yourself and rebuild the docker build. Github address: https://github.com/abhinavsingh/proxy.py
  2. In actual production, if used too much, it seems that there will be a situation where the connection cannot be automatically established. It may also be a problem with the target website.
  3. This thing can also be used as a proxy for the browser SwitchSharp, but it is recommended to add https + basic auth. Please refer to the official documentation for specific operations.

Jupyter Notebook

After using it for a while, I feel that the Notebook that comes with the tensorflow image is simpler. Because when mounting the host directory, there are no strange permission issues. The bash script is as follows:

sudo docker run --name notebook -d --restart always \
 -p 127.0.0.1:8888:8888 \
 -v /path-to-workspace/notebooks:/tf \
 tensorflow/tensorflow:latest-py3-jupyter

If you need to link Apache Spark, etc., refer to the following Script

sudo docker run --name pyspark-notebook -d \
 --net host --pid host -e TINI_SUBREAPER=true -p 8888:8888 \
 -v /path-to-workspace/notebooks:/tf \
 tensorflow/tensorflow:latest-py3-jupyter

Grafana

ID=$(id -u)
 
docker run \
 -d --restart always \
 -p 3000:3000 \
 --name=grafana \ 
 --user $ID -v /path-to-data/grafana-data:/var/lib/grafana \
 -e "GF_INSTALL_PLUGINS=grafana-clock-panel,grafana-simple-json-datasource" \
 -e "GF_SECURITY_ADMIN_PASSWORD=aaabbbccc" \
 grafana/grafana

Some quick explanations:

  • –user $ID must be set, otherwise a permission issue will occur inside Docker
  • GF_INSTALL_PLUGINS: Install some non-built-in plugins
  • GF_SECURITY_ADMIN_PASSWORD: Account: admin / aaabbbccc

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of Docker common commands Study03
  • Summary of common docker commands (recommended)
  • Docker common command operation method
  • Summary of common Docker commands: installation, mirroring, and basic container operations
  • Detailed explanation of modifying docker time zone and common docker commands
  • Summary of common docker commands

<<:  Vue uses better-scroll to achieve horizontal scrolling method example

>>:  Mysql queries the transactions being executed and how to wait for locks

Recommend

Example of how to create and run multiple MySQL containers in Docker

1. Use the mysql/mysql-server:latest image to qui...

A brief talk about MySQL semi-synchronous replication

Introduction MySQL achieves high availability of ...

Discussion on image path issues in css (same package/different package)

In CSS files, sometimes you need to use background...

Solve the problem of garbled Chinese characters in Mysql5.7

When using MySQL 5.7, you will find that garbled ...

10 reasons why Linux is becoming more and more popular

Linux has been loved by more and more users. Why ...

Detailed tutorial on installing Protobuf 3 on Ubuntu

When to install If you use the protoc command and...

Installation of Docker CE on Ubuntu

This article is used to record the installation o...

Secondary encapsulation of element el-table table (with table height adaptation)

Preface During my internship at the company, I us...

A Deep Dive into JavaScript Promises

Table of contents 1. What is Promise? 2. Why is t...

MySQL5.7 master-slave configuration example analysis

MySQL5.7 master-slave configuration implementatio...

Reasons and solutions for failure to insert emoji expressions in MySQL

Failure Scenario When calling JDBC to insert emoj...

Detailed explanation of Linux mpstat command usage

1. mpstat command 1.1 Command Format mpstat [ -A ...

Introduction to TypeScript basic types

Table of contents 1. Basic types 2. Object Type 2...

JavaScript Closures Explained

Table of contents 1. What is a closure? 1.2 Memoi...

Vue3.0 adaptive operation of computers with different resolutions

First we need to install some dependencies npm i ...