mirror of
https://github.com/casjaysdevdocker/inn
synced 2026-06-23 20:01:00 -04:00
77ed6659f156e2c3a991d741172dddf6e243da20
Stale copies called __initialize_default_templates, __initialize_config_dir, and __initialize_data_dir which are not in the old functions library, causing container startup failures. Replaced with current template versions (202606041210-git) which no longer call those missing functions. - rootfs/usr/local/bin/entrypoint.sh: update to current template - rootfs/usr/local/etc/docker/functions/entrypoint.sh: update to current template rootfs/usr/local/bin/entrypoint.sh rootfs/usr/local/etc/docker/functions/entrypoint.sh
👋 Welcome to inn 🚀
inn 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 inn
Install and run container
dockerHome="/var/lib/srv/$USER/docker/casjaysdevdocker/inn/inn/latest/rootfs"
mkdir -p "/var/lib/srv/$USER/docker/inn/rootfs"
git clone "https://github.com/dockermgr/inn" "$HOME/.local/share/CasjaysDev/dockermgr/inn"
cp -Rfva "$HOME/.local/share/CasjaysDev/dockermgr/inn/rootfs/." "$dockerHome/"
docker run -d \
--restart always \
--privileged \
--name casjaysdevdocker-inn-latest \
--hostname inn \
-e TZ=${TIMEZONE:-America/New_York} \
-v "$dockerHome/data:/data:z" \
-v "$dockerHome/config:/config:z" \
-p 80:80 \
casjaysdevdocker/inn:latest
via docker-compose
version: "2"
services:
ProjectName:
image: casjaysdevdocker/inn
container_name: casjaysdevdocker-inn
environment:
- TZ=America/New_York
- HOSTNAME=inn
volumes:
- "/var/lib/srv/$USER/docker/casjaysdevdocker/inn/inn/latest/rootfs/data:/data:z"
- "/var/lib/srv/$USER/docker/casjaysdevdocker/inn/inn/latest/rootfs/config:/config:z"
ports:
- 80:80
restart: always
Get source files
dockermgr download src casjaysdevdocker/inn
OR
git clone "https://github.com/casjaysdevdocker/inn" "$HOME/Projects/github/casjaysdevdocker/inn"
Build container
cd "$HOME/Projects/github/casjaysdevdocker/inn"
buildx
Authors
Description
Languages
Shell
92.2%
Dockerfile
7.8%