jason 7559966ff2 🗃️ 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/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:11:34 -04:00
2025-11-29 11:06:59 -05:00
2025-09-16 19:37:11 -04:00
2025-11-29 11:06:59 -05:00
2025-11-29 11:06:59 -05:00
2025-11-29 11:06:59 -05:00
2025-11-29 11:06:59 -05:00
2025-09-16 19:37:11 -04:00
2025-11-23 08:47:28 -05:00
2025-11-29 11:06:59 -05:00
2025-11-29 11:06:59 -05:00
2025-11-29 11:06:59 -05:00
2025-11-29 11:06:59 -05:00
2025-09-05 13:35:29 -04:00
🗃️ Updated domain names 🗃️
2023-08-10 19:54:55 -04:00
2022-10-21 01:47:54 -04:00

👋 deno Readme 👋

Run container

dockermgr install deno

via command line

docker run -d \
--restart always \
--name deno \
--hostname casjaysdev-deno \
--publish-all \
-e TZ=${TIMEZONE:-America/New_York} \
-v $PWD/deno/data:/data \
-v $PWD/deno/config:/config \
casjaysdev/deno:latest

via docker-compose

version: "2"
services:
  deno:
    image: casjaysdev/deno
    container_name: deno
    environment:
      - TZ=America/New_York
      - HOSTNAME=casjaysdev-deno
    volumes:
      - $HOME/.local/share/docker/storage/deno/data:/data
      - $HOME/.local/share/docker/storage/deno/config:/config
    ports:
      - 1-65535
    restart: always

Authors

🤖 Jason Hempstead: [Github](https://github.com/Jason Hempstead) [Docker](https://hub.docker.com/Jason Hempstead) 🤖
CasjaysDev: Github Docker

S
Description
Repo for deno
Readme 238 KiB
Languages
Shell 91.3%
Dockerfile 8.7%