jason 9933eb12e1 🗃️ rootfs: shield internal entrypoint PID files from /run/*.pid sweeps 🗃️
Update the embedded entrypoint copies in rootfs/ to match the
upstream template change. Internal state files renamed to dotfiles
so they're not matched by `/run/*.pid` cleanup globs:
- /run/init.d/entrypoint.pid -> /run/.entrypoint.pid
- /run/no_exit.pid -> /run/.no_exit.pid
- /run/backup.pid -> /run/.backup.pid
- /run/__start_init_scripts.pid -> /run/.start_init_scripts.pid
Per-service PIDs in /run/init.d/ are unchanged.

rootfs/usr/local/bin/copy
rootfs/usr/local/bin/entrypoint.sh
rootfs/usr/local/bin/healthcheck
rootfs/usr/local/bin/symlink
rootfs/usr/local/etc/docker/functions/entrypoint.sh
rootfs/usr/local/share/template-files/config/env/default.sample
rootfs/usr/local/share/template-files/config/env/examples/zz-entrypoint.sh
2026-05-05 19:13:48 -04:00
2026-01-29 14:21:37 -05:00
2026-01-29 14:21:37 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:32 -05:00
2025-11-29 11:55:15 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:32 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:32 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:32 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:32 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:32 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:32 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:32 -05:00

👋 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 "/var/lib/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/." "/var/lib/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 "/var/lib/srv/root/docker/casjaysdev/almalinux/latest/data:/data:z" \
-v "/var/lib/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:
      - "/var/lib/srv/root/docker/casjaysdev/almalinux/latest/data:/data:z"
      - "/var/lib/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

🤖 casjay: Github 🤖
casjaysdev: Github Docker

S
Description
Repo for docker-rhel
Readme 183 KiB
Languages
Shell 95.8%
Dockerfile 4.2%