actions-base-image/install-docker.sh
asonix 481b99308f
Some checks failed
/ build (amd64) (push) Successful in 2m23s
/ build (arm64) (push) Has been cancelled
/ publish-docker (push) Has been cancelled
/ publish-forgejo (push) Has been cancelled
Initial commit
2024-02-08 13:09:59 -06:00

19 lines
627 B
Bash

#!/usr/bin/env bash
set -xe
apt-get update
apt-get install -y ca-certificates curl
install -m 0755 -d /etc/apt/keyrings
curl -fsSL 'https://download.docker.com/linux/debian/gpg' -o /etc/apt/keyrings/docker.asc
chmod a+r /etc/apt/keyrings/docker.asc
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian \
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
tee /etc/apt/sources.list.d/docker.list > /dev/null
apt-get update
apt-get install -y \
docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin