casjay 6fee2e7cf5
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/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:29 -04:00
2025-02-04 09:30:29 -05:00
🗃️ Updated domain names 🗃️
2023-08-10 19:58:01 -04:00
2023-01-08 11:22:20 -05:00
2025-09-16 19:39:01 -04:00
2025-09-16 19:39:01 -04:00
2025-11-23 08:48:31 -05:00
2023-01-08 11:22:20 -05:00
2025-11-29 11:05:14 -05:00
2025-09-05 13:37:16 -04:00
🗃️ Updated domain names 🗃️
2023-08-10 19:58:01 -04:00
🗃️ modified: README.md 🗃️
2022-07-09 13:27:37 -04:00

vim Readme 👋

Vim is a highly configurable text editor

Run container

dockermgr install vim

via command line

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

via docker-compose

version: "2"
services:
  vim:
    image: casjaysdevdocker/vim
    container_name: vim
    environment:
      - TZ=America/New_York
      - HOSTNAME=casjaysdev-vim
    volumes:
      - $HOME/.local/share/docker/storage/vim/data:/root
      - $HOME/.local/share/docker/storage/vim/config:/etc/vim
    restart: 
      - always

Authors

🤖 Casjay: Github Docker 🤖
CasjaysDev: Github Docker

Description
vim in docker container
Readme 471 KiB
Languages
Shell 90.6%
Dockerfile 8.2%
Vim Script 1.2%