Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
aes
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
liu-puppet-modules
aes
Merge requests
!34
Test
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Test
test
into
production
Overview
0
Commits
2
Pipelines
2
Changes
11
Merged
Magnus Svensson
requested to merge
test
into
production
1 year ago
Overview
0
Commits
2
Pipelines
2
Changes
11
Expand
0
0
Merge request reports
Viewing commit
6e62919e
Prev
Next
Show latest version
11 files
+
290
−
56
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
Search (e.g. *.vue) (Ctrl+P)
6e62919e
Merge branch 'devel' into 'test'
· 6e62919e
Magnus Svensson
authored
1 year ago
Devel See merge request
!33
.devcontainer/README.md
0 → 100644
+
38
−
0
Options
# devcontainer
For format details, see https://aka.ms/devcontainer.json.
For config options, see the README at:
https://github.com/microsoft/vscode-dev-containers/tree/v0.140.1/containers/puppet
```
json
{
"name"
:
"Puppet Development Kit (Community)"
,
"dockerFile"
:
"Dockerfile"
,
//
Set
*default*
container
specific
settings.json
values
on
container
create.
"settings"
:
{
"terminal.integrated.profiles.linux"
:
{
"bash"
:
{
"path"
:
"bash"
,
}
}
},
//
Add
the
IDs
of
extensions
you
want
installed
when
the
container
is
created.
"extensions"
:
[
"puppet.puppet-vscode"
,
"rebornix.Ruby"
],
//
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"
:
"pdk --version"
,
}
```
Loading