jason 4dac625259 🗃️ 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/copy
rootfs/usr/local/bin/entrypoint.sh
rootfs/usr/local/bin/healthcheck
rootfs/usr/local/bin/symlink
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:14:10 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2026-02-02 13:42:56 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2026-02-02 13:42:56 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2026-02-02 13:42:56 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2026-02-02 13:42:56 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2026-02-02 13:42:56 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2026-02-02 13:42:56 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2026-02-02 13:42:56 -05:00
2026-05-05 14:36:31 -04:00

👋 Welcome to web 🚀

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

Install and run container

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

via docker-compose

version: "2"
services:
  ProjectName:
    image: casjaysdevdocker/web
    container_name: casjaysdevdocker-web
    environment:
      - TZ=America/New_York
      - HOSTNAME=web
    volumes:
      - "/var/lib/srv/$USER/docker/casjaysdevdocker/web/web/latest/volumes/data:/data:z"
      - "/var/lib/srv/$USER/docker/casjaysdevdocker/web/web/latest/volumes/config:/config:z"
    ports:
      - 80:80
    restart: always

Get source files

dockermgr download src casjaysdevdocker/web

OR

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

Build container

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

Authors

🤖 casjay: Github 🤖
casjaysdevdocker: Github Docker

S
Description
Repo for web
Readme 74 KiB
Languages
Shell 92.3%
Dockerfile 7.7%