Project

gantry

0.0
No commit activity in last 3 years
No release in over 3 years
A tool to deploy docker images to virtual or physical machines.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.7
~> 10.0
 Project Readme

gantry

Deploy docker images on physical machines.

Description

Please note that this README is a bad case of Readme Driven Development (or rather Wishful Programming). None of this is actually in working order yet.

Gantry deploys docker images to virtual or physical machines. Provisioning VMs using gantry allows you to reuse the docker toolchain and is much faster than using debootstrap or similar tools.

Usage

export VOLUME_GROUP=vg0
export VMNAME=bobinsky
export LVPATH=/dev/${VOLUME_GROUP}/${VMNAME}
sudo lvcreate -L 5G -n ${VMNAME} ${VOLUME_GROUP}
sudo mkfs.ext4 ${LVPATH}
sudo gantry --grub ${LVPATH} \
    --command 'apt-get update' \
    --command 'apt-get -y install grub-pc linux-image-amd64' \
    debian:jessie ${LVPATH}

Copyright

Copyright (c) 2015 Sebastian Boehm. See LICENSE for details.