casjay 3a844f2f37
Added: .gitea/
Added: .gitea/
2024-08-01 16:10:01 -04:00
2024-08-01 16:10:01 -04:00
🗃️ Updated domain names 🗃️
2023-08-10 19:56:06 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2022-07-20 21:03:12 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2022-07-20 21:03:12 -04:00
🗃️ Updated domain names 🗃️
2023-08-10 19:56:06 -04:00
2023-01-08 11:20:38 -05:00
2023-07-29 12:36:53 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2022-07-20 21:03:12 -04:00
2023-01-08 11:20:38 -05:00
2024-08-01 16:10:01 -04:00
🗃️ Updated domain names 🗃️
2023-08-10 19:56:06 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2022-07-20 21:03:12 -04:00

👋 Welcome to neovim 🚀

neovim README

Run container

dockermgr update neovim

via command line

docker pull casjaysdevdocker/neovim:latest && \
docker run -d \
--restart always \
--name casjaysdevdocker-neovim \
--hostname casjaysdev-neovim \
-e TZ=${TIMEZONE:-America/New_York} \
-v $HOME/.local/share/docker/storage/neovim/neovim/data:/data \
-v $HOME/.local/share/docker/storage/neovim/neovim/config:/config \
-p 80:80 \
casjaysdevdocker/neovim:latest

via docker-compose

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

Authors

🤖 casjay: Github Docker 🤖
CasjaysDevdDocker: Github Docker

Description
Repo for neovim
Readme 52 KiB
Languages
Shell 90.2%
Dockerfile 9.8%