jason 1f195a1c92 🗃️ rootfs: shield internal entrypoint PID files from /run/*.pid sweeps 🗃️
Update the embedded entrypoint copies in rootfs/ to match the
upstream template change. Internal state files renamed to dotfiles
so they're not matched by `/run/*.pid` cleanup globs:
- /run/init.d/entrypoint.pid -> /run/.entrypoint.pid
- /run/no_exit.pid -> /run/.no_exit.pid
- /run/backup.pid -> /run/.backup.pid
- /run/__start_init_scripts.pid -> /run/.start_init_scripts.pid
Per-service PIDs in /run/init.d/ are unchanged.

rootfs/usr/local/bin/entrypoint.sh
rootfs/usr/local/etc/docker/functions/entrypoint.sh
rootfs/usr/local/share/template-files/config/env/default.sample
rootfs/usr/local/share/template-files/config/env/examples/zz-entrypoint.sh
2026-05-05 19:12:02 -04:00
2025-02-04 09:29:05 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2024-06-19 07:42:45 -04:00
2025-09-16 19:37:39 -04:00
2025-09-16 19:37:39 -04:00
2025-11-23 08:47:45 -05:00
2025-11-29 11:04:28 -05:00
2025-09-05 13:36:01 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2024-06-19 07:42:45 -04:00
2026-05-05 14:35:13 -04:00

👋 Welcome to mailman 🚀

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

Install and run container

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

via docker-compose

version: "2"
services:
  ProjectName:
    image: casjaysdevdocker/mailman
    container_name: casjaysdevdocker-mailman
    environment:
      - TZ=America/New_York
      - HOSTNAME=mailman
    volumes:
      - "$HOME/.local/share/srv/docker/casjaysdevdocker-mailman/volumes/data:/data:z"
      - "$HOME/.local/share/srv/docker/casjaysdevdocker-mailman/volumes/config:/config:z"
    ports:
      - 80:80
    restart: always

Get source files

dockermgr download src casjaysdevdocker/mailman

OR

git clone "https://github.com/casjaysdevdocker/mailman" "$HOME/Projects/github/casjaysdevdocker/mailman"

Build container

cd "$HOME/Projects/github/casjaysdevdocker/mailman"
buildx 

Authors

🤖 casjay: Github 🤖
casjaysdevdocker: Github Docker

S
Description
Repo for mailman
Readme 158 KiB
Languages
Shell 88.3%
Dockerfile 8.1%
Python 3.6%