https://github.com/dyrnq/install-docker
bash scripts install docker
https://github.com/dyrnq/install-docker
bash-script docker install-docker
Last synced: about 1 month ago
JSON representation
bash scripts install docker
- Host: GitHub
- URL: https://github.com/dyrnq/install-docker
- Owner: dyrnq
- License: gpl-3.0
- Created: 2021-02-07T04:40:24.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-01-22T05:36:35.000Z (4 months ago)
- Last Synced: 2025-03-26T14:50:17.763Z (about 2 months ago)
- Topics: bash-script, docker, install-docker
- Language: Shell
- Homepage:
- Size: 138 KB
- Stars: 10
- Watchers: 1
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# install-docker.sh
This is a script to install docker binaries. It can help you quickly extract the docker binaries from various mirrors without the steps of setting up the repository.
Supports installation on more operating systems, centos, debian, ubuntu, openSUSE, Kali, archlinux, manjaro, gentoo, Alpine, voidlinux, artixlinux, antixlinux.
Support docker-compose binary installation.
Support systemd、openrc、runit.
## Quickstart
```bash
curl -fsSL https://mirror.ghproxy.com/https://raw.githubusercontent.com/dyrnq/install-docker/main/install-docker.sh | bash -s docker \
--mirror Tuna \
--version 27.1.1
```or with docker-compose
```bash
curl -fsSL https://cdn.jsdelivr.net/gh/dyrnq/install-docker@main/install-docker.sh | bash -s docker \
--mirror Tuna \
--version 27.1.1 \
--with-compose \
--compose-version 2.29.1 \
--compose-mirror daocloud
```or with docker-compose plugin
```bash
mkdir -p /usr/local/lib/docker/cli-plugins
curl -fsSL https://mirror.ghproxy.com/https://raw.githubusercontent.com/dyrnq/install-docker/main/install-docker.sh | bash -s docker \
--mirror tencent \
--version 27.1.1 \
--with-compose \
--compose-version 2.29.1 \
--compose-mirror daocloud \
--compose-prefix /usr/local/lib/docker/cli-plugins \
--systemd-mirror "ghproxy"
```## Get
```bash
git clone --depth 1 https://github.com/dyrnq/install-docker.git
```or
```bash
curl -fsSL -O https://raw.githubusercontent.com/dyrnq/install-docker/main/install-docker.shor
curl -fsSL -O https://cdn.jsdelivr.net/gh/dyrnq/install-docker@main/install-docker.sh
or
curl -fsSL -O https://mirror.ghproxy.com/https://raw.githubusercontent.com/dyrnq/install-docker/main/install-docker.sh
chmod +x ./install-docker.sh
```## Usage
* --version
```bash
./install-docker.sh --mirror Tuna --version 27.1.1 --prefix /usr/local/bin
```* --mirror
| mirror | mirror web address |
|-------------|---------------------------------------------------|
| aliyun | |
| 163 | |
| tencent | |
| huaweicloud | |
| tuna | |
| tsinghua | |
| nyist | |
| ustc | |
| sjtu | |
| zju | |
| nju | |
| njupt | |
| bfsu | |
| nwafu | |
| sustech | |
| hit | |
| xtom | |
| pku | |
| ynu | |
| bupt | |
| njtech | |
| qlu | |* --with-compose
```bash
./install-docker.sh --mirror Tuna --version 27.1.1 --prefix /usr/local/bin --with-compose --compose-version 2.29.1 --compose-mirror daocloud --compose-prefix /usr/local/bin
```* --dry-run
```bash
./install-docker.sh --mirror Tuna --dry-run
```## Command-Line Options
| Name | Description | Default |
| ---------- | ---------------- | ---------------------- |
| --mirror | mirror of docker binary download url | |
| --prefix | docker binary installation directory | /usr/local/bin |
| --version | docker binary version | 20.10.2 |
| --with-compose | install docker-compose | |
| --compose-prefix | docker-compose installation directory | /usr/local/bin |
| --compose-version | docker-compose version | 1.28.2 |
| --compose-mirror | mirror of docker-compose download url | |
| --systemd-mirror | mirror of dockerd`s systemd unit files | jsdelivr |
| --no-systemd | do not install dockerd`s systemd unit files | |
| --daemon-json | daemon.json path or url | |
| --daemon-json-prefix | daemon.json path | /etc/docker |
| --no-daemon-json | do not install daemon.json | |
| --with-openrc | will install dockerd`s init.d files | |
| --openrc-mirror | mirror of dockerd`s init.d files | jsdelivr |
| --with-runit | will install dockerd`s runit files | |
| --runit-mirror | mirror of dockerd`s runit files | jsdelivr |
| --dry-run | dry run | |
| --override-existing | override existing | |## Tks
* [https://get.docker.com/](https://get.docker.com/)
* [https://mirrorz.org/](https://mirrorz.org/)
*
*