-
I need to configure a global mount directory to all projects, is it possible? services:
web:
volumes:
- "./homemounts/.vscode-server:/home/alexey_korepov/.vscode-server"
- "$HOME/.local/bin:/home/alexey_korepov/.local/bin"
- "$HOME/.cache/vscode/containers-bin:/home/alexey_korepov/.vscode-server/bin"
- "$HOME/.cache/vscode/extensionsCache:/home/alexey_korepov/.vscode-server/extensionsCache" But want to configure this only once and apply to all projects. Is it possible? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
We don't have a configuration of this type, only project-level configuration. You could make an add-on and apply it to all projects. Most people don't carefully control their global configuration so this would have risks for your team if you did do it. It does look like maybe you should be looking at this from the VS Code angle instead of from the DDEV angle... |
Beta Was this translation helpful? Give feedback.
-
This is the approach I use and I works well. |
Beta Was this translation helpful? Give feedback.
We don't have a configuration of this type, only project-level configuration.
You could make an add-on and apply it to all projects.
Most people don't carefully control their global configuration so this would have risks for your team if you did do it.
It does look like maybe you should be looking at this from the VS Code angle instead of from the DDEV angle...