mirror of
				https://github.com/dockersrc/almalinux
				synced 2025-10-30 20:02:13 -04:00 
			
		
		
		
	
			
				
					
						
					
					633a0fb80c8df8b2e9d5b739df0c0308aeebf161
				
			
			
		
	👋 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 almalinux
Install and run container
mkdir -p "$HOME/.local/share/srv/docker/almalinux/rootfs"
git clone "https://github.com/dockermgr/almalinux" "$HOME/.local/share/CasjaysDev/dockermgr/almalinux"
cp -Rfva "$HOME/.local/share/CasjaysDev/dockermgr/almalinux/rootfs/." "$HOME/.local/share/srv/docker/almalinux/rootfs/"
docker run -d \
--restart always \
--privileged \
--name casjaysdevdocker-almalinux \
--hostname almalinux \
-e TZ=${TIMEZONE:-America/New_York} \
-v "$HOME/.local/share/srv/docker/casjaysdevdocker-almalinux/rootfs/data:/data:z" \
-v "$HOME/.local/share/srv/docker/casjaysdevdocker-almalinux/rootfs/config:/config:z" \
-p 80:80 \
casjaysdevdocker/almalinux:latest
via docker-compose
version: "2"
services:
  ProjectName:
    image: casjaysdevdocker/almalinux
    container_name: casjaysdevdocker-almalinux
    environment:
      - TZ=America/New_York
      - HOSTNAME=almalinux
    volumes:
      - "$HOME/.local/share/srv/docker/casjaysdevdocker-almalinux/rootfs/data:/data:z"
      - "$HOME/.local/share/srv/docker/casjaysdevdocker-almalinux/rootfs/config:/config:z"
    ports:
      - 80:80
    restart: always
Get source files
dockermgr download src casjaysdevdocker/almalinux
OR
git clone "https://github.com/casjaysdevdocker/almalinux" "$HOME/Projects/github/casjaysdevdocker/almalinux"
Build container
cd "$HOME/Projects/github/casjaysdevdocker/almalinux"
buildx 
Authors
Description
				
					Languages
				
				
								
								
									Shell
								
								77.1%
							
						
							
								
								
									Roff
								
								15.3%
							
						
							
								
								
									Dockerfile
								
								7.6%