Files
.github/example
jason 28d9722e62 📝 Sync example files and update AI.md to current gen-dockerfile 📝
Remove stale DEFAULT_* variables and sync all generated example files
to match the current gen-dockerfile tool output.
- AI.md: remove DEFAULT_FILE_DIR/DATA/CONF/TEMPLATE_DIR from .env.scripts
code block and variable reference table; WWW_ROOT_DIR retained
- example/.env.scripts: migrate to current variable names
(ENV_REGISTRY_REPO, ENV_REGISTRY_PUSH, ENV_REGISTRY_URL, ENV_REGISTRY_ORG);
remove DEFAULT_FILE/DATA/CONF/TEMPLATE_DIR entries
- example/Dockerfile: remove DEFAULT_FILE/DATA/CONF/TEMPLATE_DIR ARGs;
regenerated from current alpine template
- example/.gitattributes: sync to current template output
- example/.gitignore: sync to current template output (expanded patterns)
- example/README.md: regenerated from current template
- example/rootfs/root/docker/setup/00-init.sh: sync to current template
- example/rootfs/root/docker/setup/01-system.sh: sync to current template
- example/rootfs/root/docker/setup/02-packages.sh: sync to current template
- example/rootfs/root/docker/setup/03-files.sh: sync to current template
- example/rootfs/root/docker/setup/04-users.sh: sync to current template
- example/rootfs/root/docker/setup/05-custom.sh: sync to current template
- example/rootfs/root/docker/setup/06-post.sh: sync to current template
- example/rootfs/root/docker/setup/07-cleanup.sh: sync to current template
- example/rootfs/usr/local/bin/entrypoint.sh: sync to current template
- example/rootfs/usr/local/etc/docker/functions/entrypoint.sh: sync to current template

AI.md
example/Dockerfile
example/.env.scripts
example/.gitattributes
example/.gitignore
example/README.md
example/rootfs/root/docker/setup/00-init.sh
example/rootfs/root/docker/setup/01-system.sh
example/rootfs/root/docker/setup/02-packages.sh
example/rootfs/root/docker/setup/03-files.sh
example/rootfs/root/docker/setup/04-users.sh
example/rootfs/root/docker/setup/05-custom.sh
example/rootfs/root/docker/setup/06-post.sh
example/rootfs/root/docker/setup/07-cleanup.sh
example/rootfs/usr/local/bin/entrypoint.sh
example/rootfs/usr/local/etc/docker/functions/entrypoint.sh
2026-06-26 12:41:47 -04:00
..
🦈🏠🐜 Initial Commit 🐜🦈🏠
2026-05-13 14:35:15 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2026-05-13 14:35:15 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2026-05-13 14:35:15 -04:00

👋 Welcome to example-new 🚀

example-new 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 example-new

Install and run container

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

via docker-compose

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

Get source files

dockermgr download src casjaysdevdocker/example-new

OR

git clone "https://github.com/casjaysdevdocker/example-new" "$HOME/Projects/github/casjaysdevdocker/example-new"

Build container

cd "$HOME/Projects/github/casjaysdevdocker/example-new"
buildx 

Authors

🤖 casjay: Github 🤖
casjaysdevdocker: Github Docker