jason c10a1e7505
Build and Push 3.14 / build (push) Failing after 0s
Build and Push 3.15 / build (push) Failing after 0s
Build and Push 3.16 / build (push) Failing after 1s
Build and Push 3.17 / build (push) Failing after 1s
Build and Push 3.18 / build (push) Failing after 0s
Build and Push 3.19 / build (push) Failing after 0s
Build and Push 3.20 / build (push) Failing after 1s
Build and Push 3.21 / build (push) Failing after 1s
Build and Push 3.22 / build (push) Failing after 0s
Build and Push 3.23 / build (push) Failing after 0s
Build and Push edge / build (push) Failing after 0s
Build and Push / build (push) Failing after 1s
🐛 Fix entrypoint hang and lost-interpreter bugs 🐛
- rootfs/usr/local/bin/entrypoint.sh:
  1. The "start all services" gate
     (`if [ "$START_SERVICES" = "yes" ] || [ -z "$1" ]`) always evaluated
     true on a first-run container regardless of $1, because
     START_SERVICES is force-set to "yes" whenever no PID file exists yet.
     Any command passed to `docker run` — `exec ...`, `sh -c ...`,
     `shell`, or an arbitrary program — was swallowed into the
     service-start+monitor branch before reaching the `case "$1"`
     statement that already handles those subcommands, hanging the
     container as a daemon instead of running the given command. Changed
     the condition to `if [ -z "$1" ]` so the daemon branch only fires
     when no command was given at all.
  2. The `*/bin/sh | */bin/bash | bash | sh | shell)` case branch
     unconditionally shifted $1 before `__exec_command "$@"` (a bare
     `exec "$@"`). For `docker run image sh -c 'cmd'` this turned the
     exec into `exec -c cmd` (command not found, exit 127) instead of
     `exec sh -c 'cmd'`. Split the branch: real interpreter names
     (*/bin/sh, */bin/bash, bash, sh) now pass through unshifted; the
     "shell" keyword (not a real interpreter) gets its own branch that
     shifts and prepends "sh" to any remaining args, or falls back to a
     bare `__exec_command` (exec bash -l) when none remain.
  Verified `bash -n` passes. Found and fixed upstream in
  dockersrc/go, confirmed identical in this repo's generated
  entrypoint.sh, and mechanically applied here with the same patch.
2026-07-27 23:30:24 -04:00
2026-06-04 16:26:23 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:34 -05:00
2026-07-27 13:32:35 -04:00
2026-07-27 13:32:35 -04:00
2026-07-27 13:32:35 -04:00
2026-07-27 13:32:35 -04:00
2026-07-27 13:32:35 -04:00
2026-07-27 13:32:35 -04:00
2026-07-27 13:32:35 -04:00
2026-07-27 13:32:35 -04:00
2026-07-27 13:32:35 -04:00
2026-07-27 13:32:35 -04:00
2026-07-27 13:32:35 -04:00
2026-07-27 13:32:35 -04:00
2026-07-27 13:32:35 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:34 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:34 -05:00
2026-07-27 13:32:35 -04:00
2026-07-27 13:32:35 -04:00
2026-07-27 13:32:35 -04:00
2026-07-27 13:32:35 -04:00
2026-07-27 13:32:35 -04:00
2026-07-27 13:32:35 -04:00
2026-07-27 13:32:35 -04:00
2026-07-27 13:32:35 -04:00
2026-07-27 13:32:35 -04:00
2026-07-27 13:32:35 -04:00
2026-07-27 13:32:35 -04:00
2026-07-27 13:32:35 -04:00
2026-07-27 13:32:35 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:34 -05:00

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

🤖 casjay: Github 🤖
casjaysdev: Github Docker

S
Description
Repo for docker-alpine
Readme
319 KiB
Languages
Shell 89.8%
Edge 7.8%
Dockerfile 2.4%