casjay c1628ab880
Some checks failed
release-tag / release-image (push) Has been cancelled
🗃️ rootfs: shield internal entrypoint PID files from /run/*.pid sweeps 🗃️
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.

rootfs/usr/local/bin/entrypoint.sh
rootfs/usr/local/etc/docker/env/default.sample
rootfs/usr/local/etc/docker/env/zz-entrypoint.sh
rootfs/usr/local/etc/docker/functions/entrypoint.sh
rootfs/usr/local/share/template-files/config/env/default.sample
rootfs/usr/local/share/template-files/config/env/examples/zz-entrypoint.sh
2026-05-05 19:13:03 -04:00
2025-02-04 09:29:57 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2023-08-23 22:50:03 -04:00
2025-09-16 19:38:37 -04:00
2025-09-16 19:38:37 -04:00
2025-11-23 08:48:19 -05:00
2025-11-29 11:04:58 -05:00
2025-09-05 13:36:52 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2023-08-23 22:50:03 -04:00
2026-05-05 14:36:06 -04:00

👋 Welcome to sqlite 🚀

sqlite 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 sqlite

Install and run container

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

via docker-compose

version: "2"
services:
  ProjectName:
    image: casjaysdevdocker/sqlite
    container_name: casjaysdevdocker-sqlite
    environment:
      - TZ=America/New_York
      - HOSTNAME=sqlite
    volumes:
      - $HOME/.local/share/srv/docker/casjaysdevdocker-sqlite/volumes/data:/data:z
      - $HOME/.local/share/srv/docker/casjaysdevdocker-sqlite/volumes/config:/config:z
    ports:
      - 80:80
    restart: always

Get source files

dockermgr download src casjaysdevdocker/sqlite

OR

git clone "https://github.com/casjaysdevdocker/sqlite" "$HOME/Projects/github/casjaysdevdocker/sqlite"

Build container

cd "$HOME/Projects/github/casjaysdevdocker/sqlite"
buildx 

Authors

🤖 casjay: Github 🤖
casjaysdevdocker: Github Docker

Description
Repo for sqlite
Readme 488 KiB
Languages
Shell 91.3%
Dockerfile 7%
PHP 1.7%