-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (40 loc) · 1.03 KB
/
docker-compose.yml
File metadata and controls
41 lines (40 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
services:
devenv:
build:
context: .
dockerfile: Dockerfile
container_name: devdocker
hostname: devdocker
volumes:
# Your projects - read/write
- ./projects:/workspace
# Conda environments persistence
- conda_envs:/opt/conda/envs
# Conda package cache
- conda_pkgs:/opt/conda/pkgs
# Neovim data (plugins, LSP, etc)
- nvim_data:/root/.local/share/nvim
# Git credentials - read only
- ~/.gitconfig:/root/.gitconfig:ro
# SSH keys - read only
- ~/.ssh:/root/.ssh:ro
# GitHub Copilot CLI config
- copilot_config:/root/.config/github-copilot
# Tmux config and plugins
- tmux_data:/root/.tmux
working_dir: /workspace
stdin_open: true
tty: true
environment:
- TERM=xterm-256color
- CONDA_PLUGINS_AUTO_ACCEPT_TOS=true
- HOST_USER=${USER}
- HOST_UID=${UID:-1000}
- HOST_GID=${GID:-1000}
- DEVDOCKER_CURSOR=6
volumes:
conda_envs:
conda_pkgs:
nvim_data:
copilot_config:
tmux_data: