20 lines
463 B
YAML
20 lines
463 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/.config/nvim/lua/custom'
|
|
|
|
volumes:
|
|
home_cache: {}
|
|
home_local_share: {}
|