ide/docker-compose.yml
Joao P Dubas 9c6b47f9b3 feat: add tmux and tmuxp
Also add the respective configurations.
2023-10-15 20:56:03 +00:00

22 lines
563 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/tmux:/home/coder/.config/tmux'
- './config/tmuxp:/home/coder/.config/tmuxp'
- './config/nvim/lua/custom:/home/coder/.config/nvim/lua/custom'
volumes:
home_cache: {}
home_local_share: {}