ide/docker-compose.yml

20 lines
453 B
YAML
Raw Normal View History

2023-09-17 13:25:57 +00:00
---
services:
nvim:
build: .
image: 'joaodubas/nvchad: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'
2023-09-17 13:25:57 +00:00
volumes:
home_cache: {}
home_local_share: {}