Files
toolchain/docker.sh

14 lines
292 B
Bash
Raw Normal View History

2025-03-30 02:14:35 +03:00
#!/bin/sh
set -e
# Docker
dnf -y install dnf-plugins-core
dnf5 config-manager \
addrepo \
--from-repofile \
https://download.docker.com/linux/fedora/docker-ce.repo
dnf -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
dnf -y clean all