casjay 4888c96009
All checks were successful
release-tag / release-image (push) Successful in 18m37s
🗃️ Update codebase 🗃️
rootfs/usr/local/bin/entrypoint.sh
rootfs/usr/local/bin/pkmgr
rootfs/usr/local/etc/docker/functions/
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/03-php-fpm.sh
rootfs/usr/local/etc/docker/init.d/04-php-fpm.sh
rootfs/usr/local/etc/docker/init.d/99-nginx.sh
rootfs/usr/local/share/template-files/config/env/default.sample
rootfs/usr/local/share/template-files/config/env/examples/00-directory.sh
rootfs/usr/local/share/template-files/config/env/examples/addresses.sh
rootfs/usr/local/share/template-files/config/env/examples/certbot.sh
rootfs/usr/local/share/template-files/config/env/examples/couchdb.sh
rootfs/usr/local/share/template-files/config/env/examples/dockerd.sh
rootfs/usr/local/share/template-files/config/env/examples/global.sh
rootfs/usr/local/share/template-files/config/env/examples/healthcheck.sh
rootfs/usr/local/share/template-files/config/env/examples/mariadb.sh
rootfs/usr/local/share/template-files/config/env/examples/mongodb.sh
rootfs/usr/local/share/template-files/config/env/examples/networking.sh
rootfs/usr/local/share/template-files/config/env/examples/other.sh
rootfs/usr/local/share/template-files/config/env/examples/php.sh
rootfs/usr/local/share/template-files/config/env/examples/postgres.sh
rootfs/usr/local/share/template-files/config/env/examples/redis.sh
rootfs/usr/local/share/template-files/config/env/examples/services.sh
rootfs/usr/local/share/template-files/config/env/examples/ssl.sh
rootfs/usr/local/share/template-files/config/env/examples/supabase.sh
rootfs/usr/local/share/template-files/config/env/examples/webservers.sh
rootfs/usr/local/share/template-files/config/env/examples/zz-entrypoint.sh
2026-01-29 20:45:00 -05:00
2025-02-04 09:28:21 -05:00
🗃️ Update codebase 🗃️
2026-01-29 20:45:00 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2024-08-27 09:44:41 -04:00
2025-02-03 15:19:26 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2024-08-27 09:44:41 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2024-08-27 09:44:41 -04:00
2025-02-03 15:19:26 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2024-08-27 09:44:41 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2024-08-27 09:44:41 -04:00

👋 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/rootfs"
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/rootfs/"
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/rootfs/data:/data:z" \
-v "$HOME/.local/share/srv/docker/casjaysdevdocker-bind/rootfs/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/rootfs/data:/data:z"
      - "$HOME/.local/share/srv/docker/casjaysdevdocker-bind/rootfs/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

🤖 casjay: Github 🤖
casjaysdevdocker: Github Docker

Description
Languages
Shell 80.1%
JavaScript 11.1%
CSS 3.2%
Dockerfile 3%
PHP 1.9%
Other 0.7%