mirror of
https://github.com/casjaysdevdocker/vim
synced 2025-09-19 21:57:44 -04:00
🦈🏠🐜❗ Initial Commit ❗🐜🦈🏠
This commit is contained in:
43
README.md
Normal file
43
README.md
Normal 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) ⛵
|
Reference in New Issue
Block a user