ide/docker-compose.yml
2023-10-02 00:05:13 +00:00

20 lines
464 B
YAML

---
services:
nvim:
build: .
image: 'joaodubas/nvim:${NVIM_TAG:-latest}'
init: true
restart: unless-stopped
hostname: local
entrypoint: sleep
command: infinity
volumes:
- 'home_cache:/home/coder/.cache'
- 'home_local_share:/home/coder/.local/share'
- './config/rtx:/home/coder/.config/rtx'
- './config/nvim/lua/custom:/home/coder/.confing/nvim/lua/custom'
volumes:
home_cache: {}
home_local_share: {}