nix-docker

Provision Docker images using Nix

  • 所有者: zefhemel/nix-docker
  • 平台:
  • 许可证:
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

nix-docker

Use NixOS configurations to provision Docker containers.

Read about the what and why in this blog post

DISCLAIMER: This project is no longer actively maintained and probably broken, if you're interested in fixing it, please fork and contact me: zefhemel@gmail.com

Installation with Vagrant

The easy way to do this is to use Vagrant.

When you have Vagrant installed:

git clone https://github.com/zefhemel/nix-docker.git
cd nix-docker
vagrant up
vagrant ssh

If all went well, you're now in a VM that has both Docker and Nix installed
and nix-docker in its path.

At this point you need to connect to the VM and have nix setup the vagrant users own custom package stores. execute the follow

nix-channel --update
nix-env -i hello

You can now cd into the nix-docker/samples
directory to try to build some of the examples. Note that the ~/nix-docker
directory is mounted from your host machine, so you can edit your files with
your favorite editor and have them available within the VM.

Installation

To use nix-docker you need Nix installed as well as
Docker. Realistically, your best way to do this on
an Ubuntu (12.04 or 13.04) box. Once these are installed, installing
nix-docker is as simple as:

git clone https://github.com/zefhemel/nix-docker.git
nix-env -f nix-docker/default.nix -i nix-docker

Usage

To build a stand-alone Docker image:

nix-docker -b -t my-image configuration.nix

This will build the configuration specified in configuration.nix, have a look
in the samples/ directory for examples. It will produce a docker image named
my-image which you can then run anywhere. Use username/my-image to be able
to push them to the Docker index.

To build a host-mounted package:

nix-docker -t my-image configuration.nix

This will produce a Nix package (symlinked in the current directory in result)
containing a script you can use to spawn the container using Docker, e.g.:

sudo -E ./result/sbin/docker-run

to run the container in the foreground, or:

sudo -E ./result/sbin/docker-run -d

to daemonize it. What the docker-run script will do is check if there's
already a docker image available with the current image name and tag based on
the Nix build hash. If not, it will quickly build it first (these images take up
barely any space on disk). Then, it will boot up the container.

Distributing host-mounted packages is done by first copying the Nix closure
resulting from the build to the target machine (when you do the build it
will give you example commands to run):

nix-copy-closure root@targetmachine /nix/store/....

Then, you can spawn the container remotely with the script path provided
in the output of the build command.

主要指标

概览
名称与所有者zefhemel/nix-docker
主编程语言Nix
编程语言Nix (语言数: 3)
平台
许可证
所有者活动
创建于2013-10-31 17:14:20
推送于2015-01-20 08:36:10
最后一次提交2015-01-20 09:36:10
发布数0
用户参与
星数279
关注者数23
派生数23
提交数57
已启用问题?
问题数10
打开的问题数7
拉请求数7
打开的拉请求数0
关闭的拉请求数1
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?