Skip to content
Snippets Groups Projects
Commit 33a32fca authored by Thomas Gubler's avatar Thomas Gubler
Browse files

Tools/ros: add license info

parent 2979d146
No related branches found
No related tags found
No related merge requests found
#
# PX4 full ROS container
#
# License: according to LICENSE.md in the root directory of the PX4 Firmware repository
FROM ubuntu:14.04.1
MAINTAINER Andreas Antener <andreas@uaventure.com>
......
......@@ -2,6 +2,8 @@
Full desktop ROS container.
License: according to LICENSE.md in the root directory of the PX4 Firmware repository
**TODO:**
- use https://github.com/phusion/baseimage-docker as base
......
......@@ -3,6 +3,8 @@
# Create workspace at current location and fetch source repositories
#
# License: according to LICENSE.md in the root directory of the PX4 Firmware repository
WDIR=`pwd`
WORKSPACE=$WDIR/catkin_ws
......
#!/bin/sh
# License: according to LICENSE.md in the root directory of the PX4 Firmware repository
# main ROS Setup
# following http://wiki.ros.org/indigo/Installation/Ubuntu
......
#!/bin/sh
# this script creates a catkin_ws in the current folder
# License: according to LICENSE.md in the root directory of the PX4 Firmware repository
mkdir -p catkin_ws/src
cd catkin_ws/src
......
#!/bin/bash
# License: according to LICENSE.md in the root directory of the PX4 Firmware repository
# run this script from the root of your catkin_ws
source devel/setup.bash
cd src
......
......@@ -9,6 +9,8 @@
# After build, do "vagrant package --base docker-host-base" to package,
# and import as box: "vagrant box add --name uaventure/docker-host-base package.box"
#
# License: according to LICENSE.md in the root directory of the PX4 Firmware repository
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
......@@ -19,7 +21,7 @@ Vagrant.configure(2) do |config|
vb.gui = true
vb.memory = "1024"
end
config.vm.provision "file", source: "config/docker-default", destination: "/home/vagrant/docker-default"
config.vm.provision "file", source: "config/xsessionrc", destination: "/home/vagrant/.xsessionrc"
......
......@@ -23,4 +23,7 @@
#export TMPDIR="/mnt/bigdrive/docker-tmp"
# Expose TCP port in addition to socket
# License: according to LICENSE.md in the root directory of the PX4 Firmware repository
DOCKER_OPTS="${DOCKER_OPTS} -H unix:///var/run/docker.sock -H 0.0.0.0:2375"
......@@ -2,4 +2,5 @@
#
# Disable X access control so we can easily start GUI apps
#
# License: according to LICENSE.md in the root directory of the PX4 Firmware repository
xhost +
......@@ -12,6 +12,8 @@
# You can then load an existing image, e.g.:
# "docker load -i container-image.tar"
#
# License: according to LICENSE.md in the root directory of the PX4 Firmware repository
Vagrant.configure(2) do |config|
config.vm.box = "uaventure/docker-host-base"
......
......@@ -23,6 +23,7 @@
# - do not run the docker container with "--rm" (vagrant default). is that even possible?
# - maybe map a local working directory to compile stuff without loosing it in side the docker container
#
# License: according to LICENSE.md in the root directory of the PX4 Firmware repository
Vagrant.configure(2) do |config|
# Configure docker host
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment