Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
Common CI Configuration
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
Common CI Configuration
Merge requests
!76
Updated base job doing docker image creation
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Updated base job doing docker image creation
bw_updates
into
develop
Overview
0
Commits
2
Pipelines
1
Changes
2
Merged
Bartek Wrona
requested to merge
bw_updates
into
develop
2 weeks ago
Overview
0
Commits
2
Pipelines
1
Changes
2
Expand
Also updates to JS devcontainer.
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
19b15e2e
2 commits,
2 weeks ago
2 files
+
36
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
pnpm-config/.devcontainer/devcontainer.json
+
34
−
1
Options
@@ -2,9 +2,42 @@
"name"
:
"Hive NodeJS & Typescript"
,
"image"
:
"registry.gitlab.syncad.com/hive/common-ci-configuration/emsdk:4.0.1-3@sha256:a2aef5aee0c4bcf1655cd9388d9d940ebfe588c66dae12d0abf5e21a6aff6f0d"
,
"containerUser"
:
"emscripten"
,
//
"runArgs"
:
[
"--network=host"
],
"containerEnv"
:
{
"DISPLAY"
:
"host.docker.internal:0.0"
},
"portsAttributes"
:
{
"8000-8080"
:
{
"label"
:
"Playwright test server, do not autoforward"
,
"onAutoForward"
:
"ignore"
},
"30000-50000"
:
{
"label"
:
"Playwright test server, do not autoforward"
,
"onAutoForward"
:
"ignore"
}
},
"mounts"
:
[
{
"source"
:
"/storage1/"
,
"target"
:
"/storage1/"
,
"type"
:
"bind"
},
{
"source"
:
"${localEnv:HOME}/.gitconfig"
,
"target"
:
"/home/emscripten/.gitconfig"
,
"type"
:
"bind"
}
],
"customizations"
:
{
"vscode"
:
{
"extensions"
:
[]
"extensions"
:
[
"ms-playwright.playwright"
,
"Vue.volar"
,
"GitHub.copilot"
,
"GitHub.copilot-chat"
]
}
}
}
\ No newline at end of file
Loading