Skip to content

Commit

Permalink
fixing github actions steps and configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Ioannis committed Apr 14, 2026
1 parent 78d557c commit be72306
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/registry-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,25 @@ jobs:
docker-latest-logrotate \
docker-logrotate \
docker-engine || true
# AL2 VERSION_ID=2 confuses the CentOS repo — pin to centos/7 explicitly
# Install missing dependencies from AL2 extras
sudo amazon-linux-extras install -y selinux-ng || true
sudo yum install -y \
container-selinux \
fuse-overlayfs \
slirp4netns || true
# Add Docker CE repo pinned to CentOS 7
sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
sudo sed -i 's|\$releasever|7|g' /etc/yum.repos.d/docker-ce.repo
sudo yum install -y docker-ce docker-ce-cli containerd.io
# Install Docker CE, skip rootless extras to avoid optional dep issues
sudo yum install -y \
docker-ce \
docker-ce-cli \
containerd.io \
--exclude=docker-ce-rootless-extras
sudo systemctl start docker || true
docker --version
Expand Down

0 comments on commit be72306

Please sign in to comment.