🦈🏠🐜 Initial Commit 🐜🦈🏠

This commit is contained in:
Jason
2022-07-06 07:07:00 -04:00
commit 4ec9719a1c
13 changed files with 795 additions and 0 deletions

43
README.md Normal file
View File

@@ -0,0 +1,43 @@
# vim Readme 👋
Vim is a highly configurable text editor
## Run container
dockermgr install vim
### via command line
```shell
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
```yaml
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](https://github.com/casjay) [Docker](https://hub.docker.com/casjay) 🤖
⛵ CasjaysDev: [Github](https://github.com/casjaysdev) [Docker](https://hub.docker.com/casjaysdev) ⛵