mirror of
https://github.com/actions/runner-images.git
synced 2026-01-17 09:11:54 +08:00
16 lines
641 B
Bash
16 lines
641 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: install-docker-cli.sh
|
|
## Desc: Install docker cli, but not the engine
|
|
################################################################################
|
|
|
|
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
|
|
|
|
echo \
|
|
"deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
|
|
$(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
|
|
|
|
apt-get update
|
|
|
|
apt-get install docker-ce-cli
|