Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dotnet
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
docker images
devcontainer
dotnet
Compare revisions
6c8fc5f93d40b3a92da8014e051649329609c242 to 836fc0ffb530c71732149593e881de8b75e1bffb
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
docker-images/devcontainer/dotnet
Select target project
No results found
836fc0ffb530c71732149593e881de8b75e1bffb
Select Git revision
Branches
master
Swap
Target
docker-images/devcontainer/dotnet
Select target project
docker-images/devcontainer/dotnet
1 result
6c8fc5f93d40b3a92da8014e051649329609c242
Select Git revision
Branches
master
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
add devcontainer_example.json
· 8e1763fa
Andri Joos
authored
6 months ago
8e1763fa
add .gitlab-ci.yml
· 836fc0ff
Andri Joos
authored
6 months ago
836fc0ff
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+10
-0
10 additions, 0 deletions
.gitlab-ci.yml
devcontainer_example.json
+20
-0
20 additions, 0 deletions
devcontainer_example.json
with
30 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
View file @
836fc0ff
include
:
-
project
:
docker-images/templates
ref
:
master
file
:
devcontainer_images.gitlab-ci.yml
build
:
extends
:
.build_image_job_template
variables
:
IMAGE_BASENAME
:
${IMAGE_PREFIX}/devcontainer-dotnet
IMAGE_NAME
:
${IMAGE_BASENAME}:8.0
This diff is collapsed.
Click to expand it.
devcontainer_example.json
0 → 100644
View file @
836fc0ff
{
"name"
:
".NET"
,
"workspaceFolder"
:
"/workdir"
,
"workspaceMount"
:
"source=${localWorkspaceFolder},target=/workdir,type=bind,consistency=delegated"
,
"remoteUser"
:
"vscode"
,
"image"
:
"andrijoos/devcontainer-dotnet:8.0"
,
"customizations"
:
{
"vscode"
:
{
"extensions"
:
[
"ms-azuretools.vscode-docker"
,
"ms-dotnettools.csdevkit"
,
"hbenl.vscode-test-explorer"
]
}
},
"containerEnv"
:
{
"SHELL"
:
"/bin/bash"
},
"postCreateCommand"
:
"dotnet restore"
}
This diff is collapsed.
Click to expand it.