-
-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
43 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. | ||
{ | ||
"name": "Bluefin-devcontainer", | ||
"image": "mcr.microsoft.com/devcontainers/base:ubuntu", | ||
"workspaceFolder": "${localWorkspaceFolder}", | ||
"workspaceMount": "source=${localWorkspaceFolder},target=${localWorkspaceFolder},type=bind", | ||
"mounts": [{ "source": "/tmp", "target": "/tmp", "type": "bind" }], | ||
"otherPortsAttributes": { "onAutoForward" : "ignore" }, | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"eamodio.gitlens", | ||
"hangxingliu.vscode-systemd-support", | ||
"mads-hartmann.bash-ide-vscode", | ||
"ms-azuretools.vscode-docker", | ||
"sclu1034.justfile", | ||
"timonwong.shellcheck" | ||
] | ||
} | ||
}, | ||
// Likely need to add "--userns=keep-id, --group-add=keep-groups" for podman support | ||
"runArgs": ["--init"], | ||
"securityOpt": [ | ||
"label=disable" | ||
], | ||
"features": { | ||
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {}, | ||
"ghcr.io/guiyomh/features/just:0": {}, | ||
"ghcr.io/lukewiwa/features/shellcheck:0": {}, | ||
"ghcr.io/jsburckhardt/devcontainer-features/skopeo:1": {} | ||
}, | ||
"onCreateCommand": { | ||
"bash-completions": "sudo apt-get install -y bash-completion; echo 'source /etc/profile.d/bash_completion.sh' | sudo tee -a /etc/bash.bashrc > /dev/null", | ||
"just-completions": "just --completions bash | sudo tee -a /etc/bash_completion.d/just > /dev/null", | ||
"docker-completions": "docker completion bash | sudo tee -a /etc/bash_completion.d/docker.sh > /dev/null" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters