mirror of
https://github.com/casjaysdevdocker/bind
synced 2026-07-31 14:11:36 -04:00
8c510016c380e74a2d12727c1066f83885cc71c9
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. .claude/ Dockerfile .env.scripts .gitattributes .gitea/workflows/docker.yaml .gitignore LICENSE.md rootfs/root/docker/setup/00-init.sh rootfs/root/docker/setup/01-system.sh rootfs/root/docker/setup/02-packages.sh rootfs/root/docker/setup/03-files.sh rootfs/root/docker/setup/04-users.sh rootfs/root/docker/setup/05-custom.sh rootfs/root/docker/setup/06-post.sh rootfs/root/docker/setup/07-cleanup.sh rootfs/tmp/etc/bind/named.conf rootfs/tmp/etc/nginx/fastcgi_params rootfs/tmp/etc/nginx/nginx.conf rootfs/usr/local/bin/entrypoint.sh rootfs/usr/local/bin/pkmgr rootfs/usr/local/etc/docker/functions/entrypoint.sh rootfs/usr/local/etc/docker/init.d/01-tor.sh rootfs/usr/local/etc/docker/init.d/02-named.sh rootfs/usr/local/etc/docker/init.d/03-nginx.sh rootfs/usr/local/etc/docker/init.d/04-php-fpm.sh rootfs/usr/local/share/template-files/config/env/default.sample rootfs/usr/local/share/template-files/config/env/examples/zz-entrypoint.sh
👋 Welcome to bind 🚀
bind 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 bind
Install and run container
mkdir -p "$HOME/.local/share/srv/docker/bind/volumes"
git clone "https://github.com/dockermgr/bind" "$HOME/.local/share/CasjaysDev/dockermgr/bind"
cp -Rfva "$HOME/.local/share/CasjaysDev/dockermgr/bind/rootfs/." "$HOME/.local/share/srv/docker/bind/volumes/"
docker run -d \
--restart always \
--privileged \
--name casjaysdevdocker-bind \
--hostname bind \
-e TZ=${TIMEZONE:-America/New_York} \
-v "$HOME/.local/share/srv/docker/casjaysdevdocker-bind/volumes/data:/data:z" \
-v "$HOME/.local/share/srv/docker/casjaysdevdocker-bind/volumes/config:/config:z" \
-p 80:80 \
casjaysdevdocker/bind:latest
via docker-compose
version: "2"
services:
ProjectName:
image: casjaysdevdocker/bind
container_name: casjaysdevdocker-bind
environment:
- TZ=America/New_York
- HOSTNAME=bind
volumes:
- "$HOME/.local/share/srv/docker/casjaysdevdocker-bind/volumes/data:/data:z"
- "$HOME/.local/share/srv/docker/casjaysdevdocker-bind/volumes/config:/config:z"
ports:
- 80:80
restart: always
Get source files
dockermgr download src casjaysdevdocker/bind
OR
git clone "https://github.com/casjaysdevdocker/bind" "$HOME/Projects/github/casjaysdevdocker/bind"
Build container
cd "$HOME/Projects/github/casjaysdevdocker/bind"
buildx
Authors
Description
Languages
Shell
80.9%
JavaScript
10.6%
CSS
3.1%
Dockerfile
2.9%
PHP
1.8%
Other
0.7%