All checks were successful
/ build-docker-image (push) Successful in 24s
39 lines
1.2 KiB
JSON
39 lines
1.2 KiB
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/ubuntu
|
|
{
|
|
"name": "duplicati_dev-container",
|
|
"build": {
|
|
// Path is relative to the devcontainer.json file.
|
|
"dockerfile": "Dockerfile"
|
|
},
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/git:1": {
|
|
"ppa": true,
|
|
"version": "latest"
|
|
},
|
|
"ghcr.io/prulloac/devcontainer-features/gitlint:1": {}
|
|
},
|
|
"containerEnv": {}
|
|
|
|
//"features": {
|
|
// "ghcr.io/wxw-matt/devcontainer-features/command_runner:0": {},
|
|
// "ghcr.io/wxw-matt/devcontainer-features/script_runner:0": {},
|
|
// "ghcr.io/devcontainers-extra/features/act:1": {}
|
|
// }
|
|
|
|
// Features to add to the dev container. More info: https://containers.dev/features.
|
|
// "features": {},
|
|
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
// "forwardPorts": [],
|
|
|
|
// Use 'postCreateCommand' to run commands after the container is created.
|
|
// "postCreateCommand": "uname -a",
|
|
|
|
// Configure tool-specific properties.
|
|
// "customizations": {},
|
|
|
|
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
|
|
// "remoteUser": "root"
|
|
}
|