Sha256: 2392081bb9d3ddc51605f18fcb58d9ca7af6eb8febdf86419b0414977b4498c9

Contents?: true

Size: 1.4 KB

Versions: 4

Compression:

Stored size: 1.4 KB

Contents

cide - Continuous Integration Docker Environment
================================================

`cide` makes it easy to reproduce CI builds on the developer computer by
providing the same docker environment.

Run `cide` in the project root to run a build. Configure by providing a
`.cide.yml` file.

Usage
-----

Just run `cide` inside of your project. cide will look for a .cide.yml file
for configuration but all arguments are also passable trough command-line
arguments. If a Dockerfile already exists it will be used instead.

Example
-------

`.cide.yml`
```
---
image: "ruby:2.1"
as_root:
- apt-get update -qy && apt-get install -qy libxml2-dev
command: bundle && bundle exec rspec
```

Features
--------

* straighforward to use, just run `cide` inside of your project
* works on OSX with boot2docker
* integrates easily with jenkins or other CI systems

Limitations
-----------

A temporary Dockerfile has to be created in the project's root because docker
doesn't allow referencing files outside of the directory (even with a symlink)

Installation
------------

Install docker: https://docs.docker.com/installation/#installation

```
gem install cide
```

OSX docker install:
```
brew install boot2docker
boot2docker init
boot2docker up
# cide auto-detects boot2docker on OSX
```

TODO
----

* linked container
* schema validation
* find a way to import SSH keys
* cleaner output. on error is just outputs a backtrace

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
cide-0.1.1 README.md
cide-0.1.0 README.md
cide-0.0.8 README.md
cide-0.0.7 README.md