mirror of
https://github.com/dockersrc/almalinux
synced 2026-08-15 02:01:16 -04:00
main
Build and Push 10-dev / build (push) Waiting to run
Build and Push 10 / build (push) Waiting to run
Build and Push 8-dev / build (push) Waiting to run
Build and Push 8 / build (push) Waiting to run
Build and Push 9-dev / build (push) Waiting to run
Build and Push 9 / build (push) Waiting to run
Build and Push / build (push) Waiting to run
image.url must be the browsable hub.docker.com/r page — docker.io is only a registry pull host. source/doc labels and ENV_GIT_REPO_URL must point at the real dockersrc GitHub repo, not the retired casjaysdevdocker org. - Dockerfile: image.url → https://hub.docker.com/r/casjaysdev/almalinux; source/doc → https://github.com/dockersrc/almalinux; dropped duplicate registry-host source label - Dockerfile.8: image.url fixed; registry-host source label dropped - Dockerfile.9: image.url fixed; registry-host source label dropped - Dockerfile.10: image.url fixed; registry-host source label dropped - Dockerfile.10-dev: image.url fixed; registry-host source label dropped - .env.scripts: ENV_GIT_REPO_URL → https://github.com/dockersrc/almalinux - .env.scripts.8: ENV_GIT_REPO_URL → https://github.com/dockersrc/almalinux - .env.scripts.8-dev: ENV_GIT_REPO_URL → https://github.com/dockersrc/almalinux - .env.scripts.9: ENV_GIT_REPO_URL → https://github.com/dockersrc/almalinux - .env.scripts.9-dev: ENV_GIT_REPO_URL → https://github.com/dockersrc/almalinux - .env.scripts.10: ENV_GIT_REPO_URL → https://github.com/dockersrc/almalinux - .env.scripts.10-dev: ENV_GIT_REPO_URL → https://github.com/dockersrc/almalinux
👋 Welcome to almalinux 🚀
almalinux README
Install my system scripts
sudo bash -c "$(curl -q -LSsf "https://github.com/systemmgr/installer/raw/main/install.sh")"
sudo systemmgr --config && sudo systemmgr install scripts
Automatic install/update
dockermgr update os almalinux
Install and run container
mkdir -p "/srv/root/docker/casjaysdev/almalinux/latest"
git clone "https://github.com/dockermgr/almalinux" "$HOME/.local/share/CasjaysDev/dockermgr/almalinux"
cp -Rfva "$HOME/.local/share/CasjaysDev/dockermgr/almalinux/rootfs/." "/srv/root/docker/casjaysdev/almalinux/latest/"
docker run -d \
--restart always \
--privileged \
--name casjaysdev-almalinux-latest \
--hostname almalinux \
-e TZ=${TIMEZONE:-America/New_York} \
-v "/srv/root/docker/casjaysdev/almalinux/latest/data:/data:z" \
-v "/srv/root/docker/casjaysdev/almalinux/latest/config:/config:z" \
casjaysdev/almalinux:latest
via docker-compose
version: "2"
services:
ProjectName:
image: casjaysdev/almalinux
container_name: casjaysdev-almalinux-latest
environment:
- TZ=America/New_York
- HOSTNAME=almalinux
volumes:
- "/srv/root/docker/casjaysdev/almalinux/latest/data:/data:z"
- "/srv/root/docker/casjaysdev/almalinux/latest/config:/config:z"
restart: always
Get source files
dockermgr download src os almalinux
Build container
git clone "https://github.com/dockersrc/almalinux" "$HOME/Projects/github/dockersrc/almalinux"
cd "$HOME/Projects/github/dockersrc/almalinux" && buildx all
Authors
Languages
Shell
92.2%
Dockerfile
7.8%