Skip to content

Instantly share code, notes, and snippets.

@aazw
aazw / vscode_use_in_dockerfile.md
Last active June 22, 2025 08:25
vscode user in Dockerfile

Create new user as vscode

# add vscode user
# https://code.visualstudio.com/remote/advancedcontainers/add-nonroot-user#_creating-a-nonroot-user
ARG USERNAME=vscode
ARG USER_UID=1000
ARG USER_GID=$USER_UID

RUN groupadd --gid $USER_GID $USERNAME \
@aazw
aazw / keybindings.json
Last active June 6, 2025 01:22
keybindings.json
// 既定値を上書きするには、このファイル内にキー バインドを挿入します
[
{
"key": "cmd+w",
"command": "-workbench.action.closeWindow",
"when": "!editorIsOpen && !multipleEditorGroups"
},
{
"key": "shift+cmd+w",
"command": "-workbench.action.closeWindow"