summaryrefslogtreecommitdiff
path: root/.devcontainer/devcontainer.json
diff options
context:
space:
mode:
authorRyotaK <49341894+Ry0taK@users.noreply.github.com>2023-02-14 13:17:34 +0900
committerGitHub <noreply@github.com>2023-02-14 13:17:34 +0900
commitc7fbf5637ff6a4781f81babf81bee395b06a71c7 (patch)
tree13b3f8635847c0c897467595d1286d22f0285115 /.devcontainer/devcontainer.json
parentfix(client): use tabler icons (#9915) (diff)
downloadsharkey-c7fbf5637ff6a4781f81babf81bee395b06a71c7.tar.gz
sharkey-c7fbf5637ff6a4781f81babf81bee395b06a71c7.tar.bz2
sharkey-c7fbf5637ff6a4781f81babf81bee395b06a71c7.zip
fix: Dev Containerの設定を修正 (#9921)
* Dev Containerの設定を修正 * CONTRIBUTING.mdにDev Container使用時の注意書きを追加 * 注意書きを改行する
Diffstat (limited to '.devcontainer/devcontainer.json')
-rw-r--r--.devcontainer/devcontainer.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index e92f9dff78..fde7ec0f2b 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -2,10 +2,10 @@
"name": "Misskey",
"dockerComposeFile": "docker-compose.yml",
"service": "app",
- "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
+ "workspaceFolder": "/workspace",
"features": {
"ghcr.io/devcontainers-contrib/features/pnpm:2": {}
},
"forwardPorts": [3000],
- "postCreateCommand": ".devcontainer/init.sh"
+ "postCreateCommand": "sudo chmod 755 .devcontainer/init.sh && .devcontainer/init.sh"
}