jason c9ea3a8b30 🗃️ 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:11:20 -04:00
2025-02-04 09:28:31 -05:00
2025-09-16 09:09:27 -04:00
2025-09-16 19:36:57 -04:00
2025-09-16 09:09:27 -04:00
2025-11-23 08:47:21 -05:00
2025-11-29 11:04:06 -05:00
2025-09-05 13:35:15 -04:00
2025-09-16 09:09:27 -04:00
2026-05-05 14:34:39 -04:00

👋 Welcome to cherokee 🚀

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

Install and run container

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

via docker-compose

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

Get source files

dockermgr download src casjaysdevdocker/cherokee

OR

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

Build container

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

Authors

🤖 casjay: Github 🤖
casjaysdevdocker: Github Docker

S
Description
Docker container for cherokee
Readme 435 KiB
Languages
Shell 83.2%
Dockerfile 8.1%
CSS 3.9%
HTML 2.8%
Hack 1.1%
Other 0.9%