9
Some checks failed
ci / docker (push) Failing after 7m27s

This commit is contained in:
2025-11-06 20:40:41 +01:00
parent 9fd307930a
commit 8685ae1d33

View File

@@ -11,13 +11,9 @@ jobs:
- name: Install docker
run: |
apt-get update
apt-get install ca-certificates curl
install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/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/ubuntu $(. /etc/os-release && echo "${UBUNTU_CODENAME:-$VERSION_CODENAME}") stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
apt-get update
apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
apt-get install curl
curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh
- name: Checkout
uses: actions/checkout@v4
- name: Docker login