mirror of
https://github.com/casjaysdevdocker/deno
synced 2026-06-24 02:01:06 -04:00
7559966ff28d6b8c062ec0d031789ebc0962c6aa
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
👋 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 ⛵
Description
Languages
Shell
91.3%
Dockerfile
8.7%