Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tnt-crusher-plugin
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
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
Container 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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
gamingag
tnt-crusher-plugin
Commits
b0facd56
Commit
b0facd56
authored
1 year ago
by
Tim
Browse files
Options
Downloads
Patches
Plain Diff
Added devcontainer and gitignore
parent
465b1e65
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
.devcontainer/Dockerfile
+7
-0
7 additions, 0 deletions
.devcontainer/Dockerfile
.devcontainer/devcontainer.json
+41
-0
41 additions, 0 deletions
.devcontainer/devcontainer.json
.gitignore
+2
-0
2 additions, 0 deletions
.gitignore
with
50 additions
and
0 deletions
.devcontainer/Dockerfile
0 → 100644
+
7
−
0
View file @
b0facd56
# [Choice] Debian OS version (use bullseye on local arm64/Apple Silicon): bookworm, buster, bullseye
ARG
VARIANT="bookworm"
FROM
mcr.microsoft.com/devcontainers/java:17
# [Optional] Uncomment this section to install additional OS packages.
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
# && apt-get -y install --no-install-recommends <your-package-list-here>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
.devcontainer/devcontainer.json
0 → 100644
+
41
−
0
View file @
b0facd56
{
"build"
:
{
"dockerfile"
:
"./Dockerfile"
,
"context"
:
".."
},
"workspaceFolder"
:
"/workspaces/tnt-crusher-plugin/"
,
"features"
:
{
"ghcr.io/devcontainers/features/java:1"
:
{
"version"
:
"none"
,
"installGradle"
:
"true"
,
"installMaven"
:
"true"
},
"ghcr.io/devcontainers/features/git:1"
:
{
"version"
:
"latest"
,
"ppa"
:
"false"
}
},
"containerEnv"
:
{
"JAVA_HOME"
:
"/usr/lib/jvm/msopenjdk-current"
},
//
Configure
tool-specific
properties.
"customizations"
:
{
//
Configure
properties
specific
to
VS
Code.
"vscode"
:
{
//
Set
*default*
container
specific
settings.json
values
on
container
create.
"settings"
:
{},
//
Add
the
IDs
of
extensions
you
want
installed
when
the
container
is
created.
"extensions"
:
[
"vscjava.vscode-java-pack"
]
}
},
//
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"
:
"java -version"
,
//
Set
`remoteUser`
to
`root`
to
connect
as
root
instead.
More
info:
https://aka.ms/vscode-remote/containers/non-root.
"remoteUser"
:
"vscode"
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
.gitignore
0 → 100644
+
2
−
0
View file @
b0facd56
target/*
.vscode
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment