mirror of
https://github.com/dockersrc/almalinux
synced 2026-06-30 11:45:59 -04:00
394b9cfddfb27445dc777dc93c7860f9245d51fb
Build and Push 10-dev / build (push) Failing after 2s
Build and Push 10 / build (push) Failing after 1s
Build and Push 8-dev / build (push) Failing after 2s
Build and Push 8 / build (push) Failing after 2s
Build and Push 9-dev / build (push) Failing after 2s
Build and Push 9 / build (push) Failing after 2s
Build and Push / build (push) Failing after 1s
__setup_mta calls __find_replace on /etc/ssmtp/revaliases which returns 1 when the symlink it creates is broken. With set -o pipefail active the non-zero return kills the entire entrypoint before any command can run. ssmtp is not installed in this image and email delivery is not a feature of this image, so the MTA setup failure is irrelevant. Guard the call with || true so initialization continues regardless. - rootfs/usr/local/bin/entrypoint.sh: __setup_mta || true (non-fatal) rootfs/usr/local/bin/entrypoint.sh
👋 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
Description
Languages
Shell
95.8%
Dockerfile
4.2%