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
!33
Devel
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Devel
devel
into
test
Overview
0
Commits
6
Pipelines
3
Changes
11
Merged
Magnus Svensson
requested to merge
devel
into
test
1 year ago
Overview
0
Commits
6
Pipelines
3
Changes
11
Expand
0
0
Merge request reports
Compare
test
test (base)
and
latest version
latest version
505d8c6d
6 commits,
1 year ago
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)
.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