Add OneLab Helm chart, Argo CD Application, and GitOps values for k3s
Made-with: Cursor
This commit is contained in:
21
resources/scripts/fedora/install_docker.sh
Normal file
21
resources/scripts/fedora/install_docker.sh
Normal file
@@ -0,0 +1,21 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Install the dnf-plugins-core package (which provides the commands to manage your DNF repositories)
|
||||
|
||||
sudo dnf -y install dnf-plugins-core -y
|
||||
|
||||
# Setup stable repository
|
||||
|
||||
sudo dnf config-manager \
|
||||
--add-repo \
|
||||
https://download.docker.com/linux/fedora/docker-ce.repo -y
|
||||
|
||||
# Install the latest version of Docker Engine and containerd
|
||||
|
||||
sudo dnf install docker-ce docker-ce-cli containerd.io -y
|
||||
|
||||
sudo systemctl start docker
|
||||
|
||||
sudo systemctl enable docker
|
||||
|
||||
sudo usermod -aG docker $USER
|
||||
Reference in New Issue
Block a user