This commit is contained in:
DerGrumpf 2025-05-06 11:45:50 +02:00
commit 10ec1d35b6
4 changed files with 25 additions and 0 deletions

0
README.md Normal file
View File

0
compose.yml Normal file
View File

0
hub/postgres/compose.yml Normal file
View File

25
setup-host.sh Normal file
View File

@ -0,0 +1,25 @@
#!/bin/bash
# Get System Ready
dnf upgrade -y
# Enable EPEL (Extra Packages for Enterprise Linux)
dnf config-manager --set-enabled crb
dnf install \
https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm \
https://dl.fedoraproject.org/pub/epel/epel-next-release-latest-9.noarch.rpm -y
dnf install git dnf-utils fish fastfetch inxi neovim -y
dnf config-manager --add-repo https://download.docker.com/linux/rhel/docker-ce.repo
dnf install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin -y
# Enable Docker
systemctl start docker
systemctl enable docker
docker version
# Add User Mode Docker
groupadd docker # Just in Case
usermod -aG docker jupyter