vagrant-lxc-ng/README.md

193 lines
7.6 KiB
Markdown
Raw Permalink Normal View History

2023-02-03 19:08:48 +00:00
🟢 We plan to support and maintain vagrant-lxc, as well as clean it up.<br/>
🟢 Please feel free to contribute Issues and pull requests.<br/>
2023-02-03 19:28:15 +00:00
🟢 P.S: Thanks [Fabio Rehm](https://fabiorehm.com) for the amazing initial project.
2022-11-17 01:39:19 +00:00
# vagrant-lxc
2015-05-08 22:49:30 +00:00
[![Build Status](https://travis-ci.org/fgrehm/vagrant-lxc.png?branch=master)](https://travis-ci.org/fgrehm/vagrant-lxc) [![Gem Version](https://badge.fury.io/rb/vagrant-lxc.png)](http://badge.fury.io/rb/vagrant-lxc) [![Code Climate](https://codeclimate.com/github/fgrehm/vagrant-lxc.png)](https://codeclimate.com/github/fgrehm/vagrant-lxc) [![Coverage Status](https://coveralls.io/repos/fgrehm/vagrant-lxc/badge.png?branch=master)](https://coveralls.io/r/fgrehm/vagrant-lxc) [![Gitter chat](https://badges.gitter.im/fgrehm/vagrant-lxc.png)](https://gitter.im/fgrehm/vagrant-lxc)
2013-03-08 05:04:17 +00:00
[LXC](http://lxc.sourceforge.net/) provider for [Vagrant](http://www.vagrantup.com/) 1.9+
2013-03-03 03:38:48 +00:00
This is a Vagrant plugin that allows it to control and provision Linux Containers
2013-11-07 00:07:36 +00:00
as an alternative to the built in VirtualBox provider for Linux hosts. Check out
[this blog post](http://fabiorehm.com/blog/2013/04/28/lxc-provider-for-vagrant/)
to see it in action.
## Features
2013-03-03 03:38:48 +00:00
2013-07-28 16:35:40 +00:00
* Provides the same workflow as the Vagrant VirtualBox provider
* Port forwarding via [`redir`](https://github.com/troglobit/redir)
2015-01-14 23:44:28 +00:00
* Private networking via [`pipework`](https://github.com/jpetazzo/pipework)
2013-04-10 06:12:10 +00:00
2013-05-17 23:22:30 +00:00
## Requirements
* [Vagrant 1.9+](http://www.vagrantup.com/downloads.html)
* lxc >=2.1
2014-03-21 23:17:52 +00:00
* `redir` (if you are planning to use port forwarding)
* `brctl` (if you are planning to use private networks, on Ubuntu this means `apt-get install bridge-utils`)
2013-05-17 23:22:30 +00:00
2014-05-13 03:25:53 +00:00
The plugin is known to work better and pretty much out of the box on Ubuntu 14.04+
2017-12-13 20:47:01 +00:00
hosts and installing the dependencies on it basically means a
`apt-get install lxc lxc-templates cgroup-lite redir`. For setting up other
2015-01-14 23:44:28 +00:00
types of hosts please have a look at the [Wiki](https://github.com/fgrehm/vagrant-lxc/wiki).
2013-09-28 04:19:25 +00:00
If you are on a Mac or Windows machine, you might want to have a look at [this](http://the.taoofmac.com/space/HOWTO/Vagrant)
blog post for some ideas on how to set things up or check out [this other repo](https://github.com/fgrehm/vagrant-lxc-vbox-hosts)
for a set of Vagrant VirtualBox machines ready for vagrant-lxc usage.
2013-03-03 03:38:48 +00:00
2013-04-10 06:12:10 +00:00
## Installation
```
vagrant plugin install vagrant-lxc
```
2014-03-27 22:44:33 +00:00
## Quick start
2013-03-03 03:38:48 +00:00
```
2014-03-27 22:44:33 +00:00
vagrant init fgrehm/precise64-lxc
vagrant up --provider=lxc
2013-03-03 03:38:48 +00:00
```
2015-01-14 23:44:28 +00:00
_More information about skipping the `--provider` argument can be found at the
"DEFAULT PROVIDER" section of [Vagrant docs](https://docs.vagrantup.com/v2/providers/basic_usage.html)_
2013-05-17 23:22:30 +00:00
2014-05-13 03:27:49 +00:00
## Base boxes
2018-07-24 14:08:07 +00:00
Base boxes provided on Atlas haven't been refreshed for a good while and shouldn't be relied on.
Your best best is to build your boxes yourself. Some scripts to build your own are available at
[hsoft/vagrant-lxc-base-boxes](https://github.com/hsoft/vagrant-lxc-base-boxes).
2014-05-13 03:27:49 +00:00
If you want to build your own boxes, please have a look at [`BOXES.md`](https://github.com/fgrehm/vagrant-lxc/tree/master/BOXES.md)
for more information.
2014-05-13 03:25:53 +00:00
## Advanced configuration
2013-05-17 23:22:30 +00:00
2015-01-14 23:44:28 +00:00
You can modify container configurations from within your Vagrantfile using the
[provider block](http://docs.vagrantup.com/v2/providers/configuration.html):
2013-03-04 01:42:18 +00:00
2013-05-17 23:22:30 +00:00
```ruby
Vagrant.configure("2") do |config|
2015-01-14 23:46:18 +00:00
config.vm.box = "fgrehm/trusty64-lxc"
2013-03-03 03:38:48 +00:00
config.vm.provider :lxc do |lxc|
2013-11-07 00:07:36 +00:00
# Same effect as 'customize ["modifyvm", :id, "--memory", "1024"]' for VirtualBox
2013-04-10 06:12:10 +00:00
lxc.customize 'cgroup.memory.limit_in_bytes', '1024M'
2013-03-03 03:38:48 +00:00
end
end
```
vagrant-lxc will then write out `lxc.cgroup.memory.limit_in_bytes='1024M'` to the
2013-09-28 04:19:25 +00:00
container config file (usually kept under `/var/lib/lxc/<container>/config`)
prior to starting it.
2013-05-17 23:22:30 +00:00
2014-03-25 03:17:09 +00:00
For other configuration options, please check the [lxc.conf manpages](http://manpages.ubuntu.com/manpages/precise/man5/lxc.conf.5.html).
2013-04-10 06:12:10 +00:00
### Private Networks
2015-01-14 23:44:28 +00:00
Starting with vagrant-lxc 1.1.0, there is some rudimentary support for configuring
[Private Networks](https://docs.vagrantup.com/v2/networking/private_network.html)
by leveraging the [pipework](https://github.com/jpetazzo/pipework) project.
On its current state, there is a requirement for setting the bridge name that
will be created and will allow your machine to comunicate with the container
For example:
```ruby
Vagrant.configure("2") do |config|
config.vm.network "private_network", ip: "192.168.2.100", lxc__bridge_name: 'vlxcbr1'
end
```
Will create a new `veth` device for the container and will set up (or reuse)
a `vlxcbr1` bridge between your machine and the `veth` device. Once the last
vagrant-lxc container attached to the bridge gets `vagrant halt`ed, the plugin
will delete the bridge.
### Container naming
2014-01-31 17:01:27 +00:00
By default vagrant-lxc will attempt to generate a unique container name
for you. However, if the container name is important to you, you may use the
`container_name` attribute to set it explicitly from the `provider` block:
2014-01-31 17:01:27 +00:00
```ruby
Vagrant.configure("2") do |config|
config.vm.define "db" do |node|
node.vm.provider :lxc do |lxc|
lxc.container_name = :machine # Sets the container name to 'db'
lxc.container_name = 'mysql' # Sets the container name to 'mysql'
2014-01-31 17:01:27 +00:00
end
end
end
```
2015-01-14 23:44:28 +00:00
_Please note that there is a 64 chars limit and the container name will be
trimmed down to that to ensure we can always bring the container up.
### Backingstore options
2014-05-13 03:25:53 +00:00
Support for setting `lxc-create`'s backingstore option (`-B` and related) can be
specified from the provider block and it defaults to `best`, to change it:
```ruby
Vagrant.configure("2") do |config|
config.vm.provider :lxc do |lxc|
lxc.backingstore = 'lvm' # or 'btrfs', 'overlayfs', ...
2014-05-13 03:25:53 +00:00
# lvm specific options
lxc.backingstore_option '--vgname', 'schroots'
lxc.backingstore_option '--fssize', '5G'
lxc.backingstore_option '--fstype', 'xfs'
end
end
```
## Unprivileged containers support
Since v1.4.0, `vagrant-lxc` gained support for unprivileged containers. For now, since it's a new
feature, privileged containers are still the default, but you can have your `Vagrantfile` use
unprivileged containers with the `privileged` flag (which defaults to `true`). Example:
2014-05-13 03:25:53 +00:00
```ruby
Vagrant.configure("2") do |config|
config.vm.provider :lxc do |lxc|
lxc.privileged = false
2014-05-13 03:25:53 +00:00
end
end
```
For unprivileged containers to work with `vagrant-lxc`, you need a properly configured system. On
some distros, it can be somewhat of a challenge. Your journey to configuring your system can start
with [Stéphane Graber's blog post about it](https://stgraber.org/2014/01/17/lxc-1-0-unprivileged-containers/).
2015-01-14 23:44:28 +00:00
## Avoiding `sudo` passwords
If you're not using unprivileged containers, this plugin requires **a lot** of `sudo`ing To work
around that, you can use the `vagrant lxc sudoers` command which will create a file under
`/etc/sudoers.d/vagrant-lxc` whitelisting all commands required by `vagrant-lxc` to run.
If you are interested on what will be generated by that command, please check
[this code](lib/vagrant-lxc/command/sudoers.rb).
## More information
2013-03-03 03:38:48 +00:00
2013-09-21 03:51:44 +00:00
Please refer the [wiki](https://github.com/fgrehm/vagrant-lxc/wiki).
2013-03-04 01:23:26 +00:00
## Problems / ideas?
2013-03-04 04:06:08 +00:00
Please review the [Troubleshooting](https://github.com/fgrehm/vagrant-lxc/wiki/Troubleshooting)
wiki page + [known bugs](https://github.com/fgrehm/vagrant-lxc/issues?labels=bug&page=1&state=open)
list if you have a problem and feel free to use the [issue tracker](https://github.com/fgrehm/vagrant-lxc/issues)
2013-09-28 15:01:12 +00:00
propose new functionality and / or report bugs.
2013-03-05 04:04:39 +00:00
2013-02-25 23:09:32 +00:00
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request