Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
templates
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
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tecnalia_robotics-public
templates
Compare revisions
4d6e13e8d0b7ce2d12f432233f91c5489d251922 to master
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
tecnalia_robotics-public/gitlab_templates
Select target project
No results found
master
Select Git revision
Swap
Target
miguel.prada/gitlab_templates
Select target project
miguel.prada/gitlab_templates
tecnalia_robotics-public/gitlab_templates
2 results
4d6e13e8d0b7ce2d12f432233f91c5489d251922
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
vscode_devcontainer/.devcontainer/devcontainer.json
+36
-0
36 additions, 0 deletions
vscode_devcontainer/.devcontainer/devcontainer.json
vscode_devcontainer/README.md
+3
-0
3 additions, 0 deletions
vscode_devcontainer/README.md
with
39 additions
and
0 deletions
vscode_devcontainer/.devcontainer/devcontainer.json
0 → 100644
View file @
926018f7
//
For
format
details,
see
https://aka.ms/vscode-remote/devcontainer.json
{
"name"
:
"flexbotics base kinetic"
,
"context"
:
".."
,
"dockerFile"
:
"Dockerfile"
,
//
Use
'settings'
to
set
*default*
container
specific
settings.json
values
on
container
create.
//
You
can
edit
these
settings
after
create
using
File
>
Preferences
>
Settings
>
Remote.
"settings"
:
{
"terminal.integrated.shell.linux"
:
"/bin/bash"
},
//
Uncomment
the
next
line
if
you
want
to
publish
any
ports.
//
"appPort"
:
[],
//
Uncomment
the
next
line
to
run
commands
after
the
container
is
created.
"postCreateCommand"
:
"bash /tmp/catkin_ws_init.sh"
,
"workspaceFolder"
:
"/home/vscode/robot_ws/src/"
,
//
Uncomment
the
next
line
to
use
a
non-root
user.
On
Linux
,
this
will
prevent
//
new
files
getting
created
as
root
,
but
you
may
need
to
update
the
USER_UID
//
and
USER_GID
in
.devcontainer/Dockerfile
to
match
your
user
if
not
1000
.
"runArgs"
:
[
"-u"
,
"vscode"
,
"-v"
,
"${env:SSH_AUTH_SOCK}:/ssh-agent"
,
"-e"
,
"SSH_AUTH_SOCK=/ssh-agent"
,
"-e"
,
"DISPLAY=${env:DISPLAY}"
,
"-v"
,
"/tmp/.X11-unix:/tmp/.X11-unix"
],
//
Add
the
IDs
of
extensions
you
want
installed
when
the
container
is
created
in
the
array
below.
"extensions"
:
[
"ms-python.python"
,
"ms-iot.vscode-ros"
]
}
This diff is collapsed.
Click to expand it.
vscode_devcontainer/README.md
0 → 100644
View file @
926018f7
# vscode_devcontainer
.devcontainer configuration for ROS projects
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Prev
1
2
3
Next