This repository was archived by the owner on Nov 30, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
docker-existing-docker-compose/.devcontainer
docker-existing-dockerfile/.devcontainer Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 20
20
// Use 'settings' to set *default* container specific settings.json values on container create.
21
21
// You can edit these settings after create using File > Preferences > Settings > Remote.
22
22
"settings" : {
23
- // Uncomment to ensure your container runs using the correct shell for terminals and tasks
24
- // "terminal.integrated.shell.linux": "/bin/bash"
23
+ // This will ignore your local shell user setting for Linux since shells like zsh are typically
24
+ // not in base container images. You can also update this to an specific shell to ensure VS Code
25
+ // uses the right one for terminals and tasks. For example, /bin/bash (or /bin/ash for Alpine).
26
+ "terminal.integrated.shell.linux" : null
25
27
},
26
28
27
29
// Uncomment the next line if you want start specific services in your Docker Compose config.
Original file line number Diff line number Diff line change 24
24
// Use 'settings' to set *default* container specific settings.json values on container create.
25
25
// You can edit these settings after create using File > Preferences > Settings > Remote.
26
26
"settings" : {
27
- // Uncomment to ensure your container runs using the correct shell for terminals and tasks
28
- // "terminal.integrated.shell.linux": "/bin/bash"
27
+ // This will ignore your local shell user setting for Linux since shells like zsh are typically
28
+ // not in base container images. You can also update this to an specific shell to ensure VS Code
29
+ // uses the right one for terminals and tasks. For example, /bin/bash (or /bin/ash for Alpine).
30
+ "terminal.integrated.shell.linux" : null
29
31
},
30
32
31
33
// Uncomment the next line if you want to publish any ports.
You can’t perform that action at this time.
0 commit comments