-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from ijnek/ijnek-add-melodic-support
add melodic support
- Loading branch information
Showing
12 changed files
with
168 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
FROM osrf/ros:melodic-desktop-full | ||
|
||
# Update all packages | ||
RUN apt update && apt upgrade -y | ||
|
||
# Install extra packages | ||
RUN apt install gdb -y | ||
|
||
# Rosdep update | ||
RUN rosdep update | ||
|
||
# Source the ROS melodic setup file | ||
RUN echo "source /opt/ros/melodic/setup.bash" >> ~/.bashrc |
14 changes: 14 additions & 0 deletions
14
melodic/melodic-desktop-full/.devcontainer/devcontainer.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"dockerFile": "Dockerfile", | ||
"containerEnv": { | ||
"DISPLAY": "unix:0" | ||
}, | ||
"mounts": [ | ||
"source=/tmp/.X11-unix,target=/tmp/.X11-unix,type=bind,consistency=cached" | ||
], | ||
"runArgs": [ | ||
"--device=/dev/video0:/dev/video0:mwr", | ||
"--network=host", | ||
"--device=/dev/dri:/dev/dri" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
FROM osrf/ros:melodic-desktop | ||
|
||
# Update all packages | ||
RUN apt update && apt upgrade -y | ||
|
||
# Install extra packages | ||
RUN apt install gdb -y | ||
|
||
# Rosdep update | ||
RUN rosdep update | ||
|
||
# Source the ROS melodic setup file | ||
RUN echo "source /opt/ros/melodic/setup.bash" >> ~/.bashrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"dockerFile": "Dockerfile", | ||
"containerEnv": { | ||
"DISPLAY": "unix:0" | ||
}, | ||
"mounts": [ | ||
"source=/tmp/.X11-unix,target=/tmp/.X11-unix,type=bind,consistency=cached" | ||
], | ||
"runArgs": [ | ||
"--device=/dev/video0:/dev/video0:mwr", | ||
"--network=host", | ||
"--device=/dev/dri:/dev/dri" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
FROM ros:melodic-perception | ||
|
||
# Update all packages | ||
RUN apt update && apt upgrade -y | ||
|
||
# Install extra packages | ||
RUN apt install gdb -y | ||
|
||
# Rosdep update | ||
RUN rosdep update | ||
|
||
# Source the ROS melodic setup file | ||
RUN echo "source /opt/ros/melodic/setup.bash" >> ~/.bashrc |
14 changes: 14 additions & 0 deletions
14
melodic/melodic-perception/.devcontainer/devcontainer.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"dockerFile": "Dockerfile", | ||
"containerEnv": { | ||
"DISPLAY": "unix:0" | ||
}, | ||
"mounts": [ | ||
"source=/tmp/.X11-unix,target=/tmp/.X11-unix,type=bind,consistency=cached" | ||
], | ||
"runArgs": [ | ||
"--device=/dev/video0:/dev/video0:mwr", | ||
"--network=host", | ||
"--device=/dev/dri:/dev/dri" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
FROM ros:melodic-robot | ||
|
||
# Update all packages | ||
RUN apt update && apt upgrade -y | ||
|
||
# Install extra packages | ||
RUN apt install gdb -y | ||
|
||
# Rosdep update | ||
RUN rosdep update | ||
|
||
# Source the ROS melodic setup file | ||
RUN echo "source /opt/ros/melodic/setup.bash" >> ~/.bashrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"dockerFile": "Dockerfile", | ||
"containerEnv": { | ||
"DISPLAY": "unix:0" | ||
}, | ||
"mounts": [ | ||
"source=/tmp/.X11-unix,target=/tmp/.X11-unix,type=bind,consistency=cached" | ||
], | ||
"runArgs": [ | ||
"--device=/dev/video0:/dev/video0:mwr", | ||
"--network=host", | ||
"--device=/dev/dri:/dev/dri" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
FROM ros:melodic-ros-base | ||
|
||
# Update all packages | ||
RUN apt update && apt upgrade -y | ||
|
||
# Install extra packages | ||
RUN apt install gdb -y | ||
|
||
# Rosdep update | ||
RUN rosdep update | ||
|
||
# Source the ROS melodic setup file | ||
RUN echo "source /opt/ros/melodic/setup.bash" >> ~/.bashrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"dockerFile": "Dockerfile", | ||
"containerEnv": { | ||
"DISPLAY": "unix:0" | ||
}, | ||
"mounts": [ | ||
"source=/tmp/.X11-unix,target=/tmp/.X11-unix,type=bind,consistency=cached" | ||
], | ||
"runArgs": [ | ||
"--device=/dev/video0:/dev/video0:mwr", | ||
"--network=host", | ||
"--device=/dev/dri:/dev/dri" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
FROM ros:melodic-ros-core | ||
|
||
# Update all packages | ||
RUN apt update && apt upgrade -y | ||
|
||
# Install extra packages | ||
RUN apt install gdb -y | ||
|
||
# Install dependencies not included for ROS Core Docker Images | ||
RUN apt install build-essential -y | ||
RUN apt install git -y | ||
RUN apt install python3-rosdep -y | ||
|
||
# Rosdep | ||
RUN rosdep init | ||
RUN rosdep update | ||
|
||
# Source the ROS melodic setup file | ||
RUN echo "source /opt/ros/melodic/setup.bash" >> ~/.bashrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"dockerFile": "Dockerfile", | ||
"containerEnv": { | ||
"DISPLAY": "unix:0" | ||
}, | ||
"mounts": [ | ||
"source=/tmp/.X11-unix,target=/tmp/.X11-unix,type=bind,consistency=cached" | ||
], | ||
"runArgs": [ | ||
"--device=/dev/video0:/dev/video0:mwr", | ||
"--network=host", | ||
"--device=/dev/dri:/dev/dri" | ||
] | ||
} |