jason 3ebfcae5ad
Build and Push 10 / build (push) Failing after 2s
Build and Push 11 / build (push) Failing after 1s
Build and Push 12 / build (push) Failing after 2s
Build and Push 13 / build (push) Failing after 2s
Build and Push / build (push) Failing after 2s
🐛 Fix entrypoint crash on __setup_mta ssmtp failure 🐛
__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
2026-06-27 19:19:14 -04:00
2026-06-04 16:26:32 -04:00
🗃️ Update codebase 🗃️
2026-06-10 14:17:25 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:40 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:40 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:40 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:40 -05:00

👋 Welcome to debian 🚀

debian 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 debian

Install and run container

mkdir -p "/var/lib/srv/root/docker/casjaysdev/debian/latest"
git clone "https://github.com/dockermgr/debian" "$HOME/.local/share/CasjaysDev/dockermgr/debian"
cp -Rfva "$HOME/.local/share/CasjaysDev/dockermgr/debian/rootfs/." "/var/lib/srv/root/docker/casjaysdev/debian/latest/"
docker run -d \
--restart always \
--privileged \
--name casjaysdev-debian-latest \
--hostname debian \
-e TZ=${TIMEZONE:-America/New_York} \
-v "/var/lib/srv/root/docker/casjaysdev/debian/latest/data:/data:z" \
-v "/var/lib/srv/root/docker/casjaysdev/debian/latest/config:/config:z" \
casjaysdev/debian:latest

via docker-compose

version: "2"
services:
  ProjectName:
    image: casjaysdev/debian
    container_name: casjaysdev-debian-latest
    environment:
      - TZ=America/New_York
      - HOSTNAME=debian
    volumes:
      - "/var/lib/srv/root/docker/casjaysdev/debian/latest/data:/data:z"
      - "/var/lib/srv/root/docker/casjaysdev/debian/latest/config:/config:z"
    restart: always

Get source files

dockermgr download src os debian

Build container

git clone "https://github.com/dockersrc/debian" "$HOME/Projects/github/dockersrc/debian"
cd "$HOME/Projects/github/dockersrc/debian" && buildx all 

Authors

🤖 casjay: Github 🤖
casjaysdev: Github Docker

S
Description
Repo for docker-debian
Readme 170 KiB
Languages
Shell 92%
Dockerfile 8%