2022-07-06 07:15:11 -04:00
2022-07-06 07:15:10 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2022-07-06 07:07:00 -04:00
🗃️ modified: Dockerfile 🗃️
2022-07-06 07:15:11 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2022-07-06 07:07:00 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2022-07-06 07:07:00 -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 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: casjaysdev/vim
    container_name: vim
    environment:
      - TZ=America/New_York
      - HOSTNAME=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 70 KiB
Languages
Shell 86%
Dockerfile 9.9%
Vim Script 4.1%