blob: 1b956b96a1db78d744d4faa095fae8586551a256 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
services:
dev_environment:
container_name: devbox
image: bingchao: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
|