mirror of
https://github.com/casjaysdevdocker/vim
synced 2026-05-15 08:47:59 -04:00
6fee2e7cf50c2910e573fe813c08ab23a0dd9dfd
Some checks failed
release-tag / release-image (push) Has been cancelled
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
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
Description
Languages
Shell
90.6%
Dockerfile
8.2%
Vim Script
1.2%