Use Docker to build a Git image using the clone repository

Use Docker to build a Git image using the clone repository

Overview

I have been using Docker for more than a year. Recently, I realized that when I was quickly orchestrating services, the git used in the shell script was still native.

insert image description here

So I decided to containerize git, searched on dockerhub, and found this image with a relatively high download volume

insert image description here

After looking at the dockerfile, I feel that it is not suitable for the needs

insert image description here

There are no volumes or ssh provided here. It is not possible to map the repository to the host machine, nor is there a function to clone a private repository (whisper: both are possible, but inconvenient). Other gitclient images are similar.

insert image description here
I can only reinvent the wheel myself.

Mirror address

The image in this article is pushed to dockerhub. You can use it directly if needed: https://hub.docker.com/r/wuliangxue/git

wheel

First, you need a Docker Hub account, and then log in to the server using Docker to push the image to the Docker Hub repository, which will facilitate future migrations.

insert image description here

Create a git.dockerfile file in any directory

insert image description here

In the Dockerfile, enter the following

insert image description here

Let me briefly explain here that originally a mirror based on Ubuntu 18.04 was provided, but the size was too large, so it was replaced with Alpine. Domestic users need to switch the Linux software source to a domestic mirror, otherwise various problems will arise when installing the software. This image itself is for cloning projects, so only git and ssh are installed. The following is to prepare for cloning the private warehouse and open the corresponding ssh directory volume. Since the working directory is set, the default project is in the /git/repo directory when git clone. When using a mirror, just mount this directory.

Build the image

Enter the command: docker build -t wuliangxue/git:0.1-alpine -f git.dockerfile .

insert image description here

When Successfully appears, it means the image is built successfully.

insert image description here

Here we compare the sizes of images built based on Ubuntu 18.04. The image with the tag 0.1 is built based on Ubuntu 18.04 [187M], and the image with the tag 0.1-alpine is built based on alpine:3.12 [30.1M]

insert image description here

Using Mirror

First, use the image you just built to clone a public repository and execute the following command

docker run --rm --name git \
	-v "$(pwd)":/git/repo wuliangxue/git:0.1-alpine \
	git clone https://github.com/docker-library/mysql.git 

insert image description here

This repository has been cloned.

insert image description here

If you want to view the details of the clone, you can add -it to the previous command.

docker run -it --rm --name git \
	-v "$(pwd)":/git/repo wuliangxue/git:0.1-alpine \
	git clone https://github.com/docker-library/mysql.git 

insert image description here

What should I do when I need to clone a private warehouse? ?
You can mount the ssh public and private keys into the container.
Execute the following command [Note that for demonstration purposes, I put the public and private keys directly in the current directory]

docker run -it --rm --name git \
-v "$(pwd)":/git/repo \
-v "$(pwd)/id_rsa":/root/.ssh/id_rsa \
-v "$(pwd)/id_rsa.pub":/root/.ssh/id_rsa.pub \
wuliangxue/git:0.1-alpine git clone [email protected]:wuliangxue/douyu.git 

insert image description here

Note that the -it parameter must be added here, because when you clone a private repository for the first time, git does not know the authenticity of the address (there is no record in the known_hosts file, and there is no such file for the first use), so it will ask. If there is no -it parameter and the terminal interaction function is not enabled, the clone will fail directly.

Enter yes and press Enter to clone the private warehouse.

insert image description here

Finally, push this wheel to Dockerhub so that you can directly pull it and use it next time you change the server.

insert image description here

This is the end of this article about using Docker to build a Git image using clone repository. For more information about Docker building Git image, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to use Docker buildx to build multi-platform images and push them to private repositories
  • How to use domestic image warehouse for Docker
  • Jenkins builds Docker images and pushes them to Harbor warehouse
  • docker-maven-plugin packages the image and uploads it to a private warehouse
  • How to use Docker image repository
  • Alibaba Cloud deployment steps for Docker private image repository
  • Docker container practice image warehouse

<<:  HTML table tag tutorial (20): row background color attribute BGCOLOR

>>:  Native JS implementation of loading progress bar

Recommend

Two ways to manage volumes in Docker

In the previous article, I introduced the basic k...

6 solutions for network failure in Docker container

6 solutions for network failure in Docker contain...

What is the file mysql-bin.000001 in mysql? Can it be deleted?

After installing MySQL using ports, I found that ...

Implementation of Nginx hot deployment

Table of contents Semaphore Nginx hot deployment ...

Simple usage of MySQL temporary tables

MySQL temporary tables are very useful when we ne...

jQuery achieves fade-in and fade-out effects

Before using jQuery to complete the fade-in and f...

How to create a MySQL master-slave database using Docker on MacOS

1. Pull the MySQL image Get the latest MySQL imag...

Docker creates MySQL explanation

1. Download MySQL Image Command: docker pull mysq...

JavaScript to implement slider verification code

This article shares the specific code of JavaScri...

Understand the implementation of Nginx location matching in one article

Since the team is separating the front-end and ba...

Nginx service 500: Internal Server Error one of the reasons

500 (Internal Server Error) The server encountere...

Install Windows Server 2019 on VMware Workstation (Graphic Tutorial)

If prompted to enter a key, select [I don’t have ...

Vue Element-ui implements tree control node adding icon detailed explanation

Table of contents 1. Rendering 2. Bind data and a...

5 commonly used objects in JavaScript

Table of contents 1. JavaScript Objects 1).Array ...