Go to file
casjay 0194f25475
All checks were successful
release-tag / release-image (push) Successful in 2m32s
🗃️ Committing everything that changed 🗃️
rootfs/usr/local/etc/docker/functions/entrypoint.sh
2024-09-24 11:03:02 -04:00
.gitea/workflows 🗃️ Committing everything that changed 🗃️ 2024-08-27 12:14:56 -04:00
rootfs 🗃️ Committing everything that changed 🗃️ 2024-09-24 11:03:02 -04:00
.dockerignore 🦈🏠🐜 Initial Commit 🐜🦈🏠 2024-08-27 09:44:41 -04:00
.env.scripts 🗃️ Committing everything that changed 🗃️ 2024-08-30 15:14:00 -04:00
.gitattributes 🦈🏠🐜 Initial Commit 🐜🦈🏠 2024-08-27 09:44:41 -04:00
.gitignore 🦈🏠🐜 Initial Commit 🐜🦈🏠 2024-08-27 09:44:41 -04:00
Dockerfile 🗃️ Committing everything that changed 🗃️ 2024-08-30 15:14:00 -04:00
LICENSE.md 🦈🏠🐜 Initial Commit 🐜🦈🏠 2024-08-27 09:44:41 -04:00
README.md 🦈🏠🐜 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