Project

General

Profile

Download (6.23 KB) Statistics
| Branch: | Tag: | Revision:

foreman-docker / README.md @ 9ea40591

1
# Foreman Docker Plugin
2

    
3
[![Code Climate](https://codeclimate.com/github/theforeman/foreman-docker/badges/gpa.svg)](https://codeclimate.com/github/theforeman/foreman-docker)
4
[![Gem Version](https://badge.fury.io/rb/foreman_docker.svg)](http://badge.fury.io/rb/foreman_docker)
5
[![Dependency Status](https://gemnasium.com/theforeman/foreman-docker.svg)](https://gemnasium.com/theforeman/foreman-docker)
6
[![Issue Stats](http://issuestats.com/github/theforeman/foreman-docker/badge/pr)](http://issuestats.com/github/theforeman/foreman-docker)
7

    
8
```foreman_docker``` enables provisioning and managing of [Docker](http://docker.com) containers and images in [Foreman](http://github.com/theforeman/foreman), all of that under the GPL v3+ license.
9

    
10
* Website: [TheForeman.org](http://theforeman.org)
11
* ServerFault tag: [Foreman](http://serverfault.com/questions/tagged/foreman)
12
* Issues: [foreman_docker Redmine](http://projects.theforeman.org/projects/docker/issues)
13
* Wiki: [Foreman wiki](http://projects.theforeman.org/projects/foreman/wiki/About)
14
* Community and support: #theforeman for general support, #theforeman-dev for development chat in [Freenode](irc.freenode.net)
15
* Mailing lists:
16
    * [foreman-users](https://groups.google.com/forum/?fromgroups#!forum/foreman-users)
17
    * [foreman-dev](https://groups.google.com/forum/?fromgroups#!forum/foreman-dev)
18

    
19
## Features
20

    
21
* Special view with logs and processes of Foreman managed containers
22
    ![](http://i.imgur.com/D21bdgj.png)
23
    ![](http://i.imgur.com/XnrPTZC.png)
24
* Wizard for container creation and cgroups configuration
25
    ![Select a docker image](http://i.imgur.com/IoMuNnr.png)
26
    ![Cgroups configuration](http://i.imgur.com/74d99Tf.png)
27
* Commit and upload containers: creates an image with the status of your current container
28
    ![Commit and upload to the docker hub](http://i.imgur.com/coF5Y0L.png)
29
* Container listing and basic CRUD operations
30
    ![](http://i.imgur.com/DPcaHkZ.png)
31

    
32
### Planned
33
* [Kubernetes](https://github.com/GoogleCloudPlatform/kubernetes/) integration
34
* Events stream ([#8037](http://projects.theforeman.org/issues/8037))
35
* Tight integration between Docker hosts [Atomic](http://www.projectatomic.io/) and [CoreOS](http://coreos.com/) and containers ([#7653](http://projects.theforeman.org/issues/7653), [#7652](http://projects.theforeman.org/issues/7652))
36
* Quickstart images - pre-supplied images and configuration ([#7869](http://projects.theforeman.org/issues/7869))
37
* Links to other containers ([#7866](http://projects.theforeman.org/issues/7866))
38
* API ([#7874](http://projects.theforeman.org/issues/7874))
39
* [Hammer CLI](http://github.com/theforeman/hammer-cli-foreman) support ([#8227](http://projects.theforeman.org/issues/8227))
40

    
41
## Installation
42

    
43
Please see the Foreman manual for appropriate instructions:
44

    
45
* [Foreman: How to Install a Plugin](http://theforeman.org/manuals/latest/index.html#6.1InstallaPlugin)
46

    
47
### Red Hat, CentOS, Fedora, Scientific Linux (rpm)
48

    
49
Set up the repo as explained in the link above, then run
50

    
51
    # yum install ruby193-rubygem-foreman_docker
52

    
53
### Debian, Ubuntu (deb)
54

    
55
Set up the repo as explained in the link above, then run
56

    
57
    # apt-get install ruby-foreman-docker
58

    
59
### Bundle (gem)
60

    
61
Add the following to bundler.d/Gemfile.local.rb in your Foreman installation directory (/usr/share/foreman by default)
62

    
63
    $ gem 'foreman_docker'
64

    
65
Then run `bundle install` and `foreman-rake db:migrate` from the same directory
66

    
67
--------------
68

    
69
To verify that the installation was successful, go to Foreman, top bar **Administer > About** and check 'foreman_docker' shows up in the **System Status** menu under the Plugins tab. You should also see a **'Containers'** button show up in the top bar, similar to this
70

    
71
![](http://i.imgur.com/Ug14Ktl.png)
72

    
73
## Configuration
74

    
75
Go to **Infrastructure > Compute Resources** and click on "New Compute Resource".
76

    
77
Choose the **Docker provider**, and fill in all the fields. User name, password, and email are used so that Docker clients such as Foreman can make the host download images from the Docker hub. Your password will be encrypted in the database.
78

    
79
That's it. You're now ready to create and manage containers in your new Docker compute resource.
80

    
81
## Compatibility
82

    
83
| Foreman | Plugin |
84
| ---------------:| --------------:|
85
| >= 1.5         | 0.0.1 - 0.0.3   |
86
| >= 1.6         | 0.1.0 - 0.2.0   |
87
| >= 1.7         | 1.0.0+          |
88

    
89
See extras/RELEASE.md for more detailed information on compatibility and releases.
90

    
91
## How to contribute?
92

    
93
Generally, follow the [Foreman guidelines](http://theforeman.org/contribute.html). For code-related contributions, fork this project and send a pull request with all changes. Some things to keep in mind:
94
* Code from the master branch can contain features only present in [Fog's](http://github.com/fog/fog) master branch, we commit to wait for the next Fog release to put that code in a foreman-docker release.
95
* [Follow the rules](http://theforeman.org/contribute.html#SubmitPatches) about commit message style and create a Redmine issue. Doing this right will help reviewers to get your contribution merged faster.
96
* [Rubocop](https://github.com/bbatsov/rubocop) will analyze your code, you can run it locally with `rake rubocop`.
97
* All of our pull requests run the full test suite in our [Jenkins CI system](http://ci.theforeman.org/). Please include tests in your pull requests for any additions or changes in functionality
98

    
99

    
100
### Testing
101

    
102
Run `rake test:docker` from your Foreman directory to run the test suite.
103

    
104
## Latest code
105

    
106
You can get the develop branch of the plugin by specifying your Gemfile in this way:
107

    
108
    gem 'foreman_docker', :git => "https://github.com/theforeman/foreman-docker.git"
109

    
110
# Copyright
111

    
112
Copyright (c) 2014 Amos Benari
113

    
114
This program is free software: you can redistribute it and/or modify
115
it under the terms of the GNU General Public License as published by
116
the Free Software Foundation, either version 3 of the License, or
117
(at your option) any later version.
118

    
119
This program is distributed in the hope that it will be useful,
120
but WITHOUT ANY WARRANTY; without even the implied warranty of
121
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
122
GNU General Public License for more details.
123

    
124
You should have received a copy of the GNU General Public License
125
along with this program.  If not, see <http://www.gnu.org/licenses/>.
126