blob: e7977d9d38b42510a85bd57cb2c715afc33ea9cb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
services:
dev_environment:
container_name: devbox
image: devbox:latest
# Allow for interactive terminal
stdin_open: true
tty: true
# Mount to repository
volumes:
- ../:/work
- ./config/nvim:/root/.config/nvim
- ./config/tmux:/root/.config/tmux
|