mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-22 01:12:31 +00:00
59 lines
1.5 KiB
Ruby
59 lines
1.5 KiB
Ruby
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
|
|
#
|
|
# Boot docker SITL environment
|
|
#
|
|
# "vagrant up" will build the images. Should start "xterm" in the end.
|
|
#
|
|
# Notes:
|
|
# (will change, need proper docs)
|
|
#
|
|
# Build with multiple dependent docker containers:
|
|
# Use the "--no-parallel" option so the containers will be built in order.
|
|
# e.g.: "vagrant up --no-parallel"
|
|
#
|
|
# Running apps directly:
|
|
# "vagrant docker-run ros -- <cmd>"
|
|
# Attention: will loose all data when stopped, vagrant runs this with "--rm"
|
|
#
|
|
# TODO
|
|
# - 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
|
|
#
|
|
|
|
Vagrant.configure(2) do |config|
|
|
# Configure docker host
|
|
config.vm.provider "docker" do |d|
|
|
d.vagrant_machine = "docker-host"
|
|
d.vagrant_vagrantfile = "../docker-host/Vagrantfile"
|
|
end
|
|
|
|
# Configure docker apps to run
|
|
config.vm.define "ros" do |app|
|
|
app.vm.provider "docker" do |d|
|
|
d.name = "ros"
|
|
#d.image = "px4ros/ros-base:no-drcsim"
|
|
d.build_dir = "../../docker/px4-ros"
|
|
d.build_args = ["-t=px4ros/ros-base:no-drcsim"]
|
|
|
|
# Share docker host x11 socket
|
|
# Run privileged to support 3d acceleration
|
|
d.volumes = [
|
|
"/tmp/.X11-unix:/tmp/.X11-unix:ro"
|
|
]
|
|
d.create_args = ["--privileged"]
|
|
|
|
# TODO: get display number from host system
|
|
d.env = {
|
|
"DISPLAY" => ":0"
|
|
}
|
|
|
|
d.remains_running = true
|
|
d.cmd = ["xterm"]
|
|
#d.has_ssh = true
|
|
end
|
|
end
|
|
|
|
end
|