mirror of
https://github.com/dockersrc/alpine
synced 2026-06-30 11:45:53 -04:00
fdc71f7d74ffb24fc0410218a2d19ad3543cfaad
Build and Push 3.14 / build (push) Failing after 3s
Build and Push 3.15 / build (push) Failing after 2s
Build and Push 3.16 / build (push) Failing after 3s
Build and Push 3.17 / build (push) Failing after 1s
Build and Push 3.18 / build (push) Failing after 2s
Build and Push 3.19 / build (push) Failing after 2s
Build and Push 3.20 / build (push) Failing after 2s
Build and Push 3.21 / build (push) Failing after 2s
Build and Push 3.22 / build (push) Failing after 2s
Build and Push 3.23 / build (push) Failing after 2s
Build and Push / build (push) Failing after 2s
Build and Push edge / build (push) Failing after 2s
__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 alpine 🚀
alpine 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 alpine
Install and run container
mkdir -p "/var/lib/srv/root/docker/casjaysdev/alpine/latest"
git clone "https://github.com/dockermgr/alpine" "$HOME/.local/share/CasjaysDev/dockermgr/alpine"
cp -Rfva "$HOME/.local/share/CasjaysDev/dockermgr/alpine/rootfs/." "/var/lib/srv/root/docker/casjaysdev/alpine/latest/"
docker run -d \
--restart always \
--privileged \
--name casjaysdev-alpine-latest \
--hostname alpine \
-e TZ=${TIMEZONE:-America/New_York} \
-v "/var/lib/srv/root/docker/casjaysdev/alpine/latest/data:/data:z" \
-v "/var/lib/srv/root/docker/casjaysdev/alpine/latest/config:/config:z" \
casjaysdev/alpine:latest
via docker-compose
version: "2"
services:
ProjectName:
image: casjaysdev/alpine
container_name: casjaysdev-alpine-latest
environment:
- TZ=America/New_York
- HOSTNAME=alpine
volumes:
- "/var/lib/srv/root/docker/casjaysdev/alpine/latest/data:/data:z"
- "/var/lib/srv/root/docker/casjaysdev/alpine/latest/config:/config:z"
restart: always
Get source files
dockermgr download src os alpine
Build container
git clone "https://github.com/dockersrc/alpine" "$HOME/Projects/github/dockersrc/alpine"
cd "$HOME/Projects/github/dockersrc/alpine" && buildx all
Authors
Description
Languages
Shell
94.5%
Edge
4.2%
Dockerfile
1.3%