2
0
Fork 0
mirror of https://github.com/friendica/docker synced 2025-02-19 18:52:20 +01:00
docker/.devcontainer/devcontainer.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"
}