Skip to content

Commit 80d60dc

Browse files
committed
Revert "devcontainer: mount /data folder"
This reverts commit 747e5d2.
1 parent acae960 commit 80d60dc

2 files changed

Lines changed: 1 addition & 7 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ RUN apt-get update \
2323
&& apt-get clean \
2424
&& rm -rf /var/lib/apt/lists/*
2525

26-
# Make /data directory
27-
RUN mkdir /data \
28-
&& chmod 777 /data
29-
3026
# Create the user
3127
RUN groupadd --gid $USER_GID $USERNAME \
3228
&& useradd --uid $USER_UID --gid $USER_GID -m $USERNAME -s /usr/bin/fish\

.devcontainer/devcontainer.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@
2424
},
2525
"mounts": [
2626
// Mount in forwarding of ssh keys
27-
"source=${localEnv:SSH_AUTH_SOCK},target=${localEnv:SSH_AUTH_SOCK},type=bind",
28-
// Mount in data directory
29-
"source=${localEnv:DATA},target=/data,type=bind"
27+
"source=${localEnv:SSH_AUTH_SOCK},target=${localEnv:SSH_AUTH_SOCK},type=bind"
3028
],
3129
// Configure tool-specific properties.
3230
"customizations": {

0 commit comments

Comments
 (0)