mirror of
https://github.com/friendica/docker
synced 2025-02-19 18:52:20 +01:00
25 lines
881 B
JSON
25 lines
881 B
JSON
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
|
// README at: https://github.com/devcontainers/templates/tree/main/src/debian
|
|
{
|
|
"name": "friendica-docker",
|
|
"image": "mcr.microsoft.com/devcontainers/base:bookworm",
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
|
|
},
|
|
|
|
// Download and install bashbrew
|
|
"postCreateCommand": "sudo curl -o /usr/local/bin/bashbrew https://doi-janky.infosiftr.net/job/bashbrew/job/master/lastSuccessfulBuild/artifact/bashbrew-amd64 && sudo chmod +x /usr/local/bin/bashbrew",
|
|
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"github.vscode-github-actions",
|
|
"ms-azuretools.vscode-docker",
|
|
"GitHub.vscode-pull-request-github"
|
|
]
|
|
}
|
|
}
|
|
|
|
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
|
|
// "remoteUser": "root"
|
|
}
|