1
|
# Foreman Docker Plugin
|
2
|
|
3
|
This plugin enables provisioning and managing Docker containers and images in Foreman.
|
4
|
|
5
|
## Installation
|
6
|
|
7
|
Please see the Foreman manual for appropriate instructions:
|
8
|
|
9
|
* [Foreman: How to Install a Plugin](http://theforeman.org/manuals/latest/index.html#6.1InstallaPlugin)
|
10
|
|
11
|
The gem name is "foreman_docker".
|
12
|
|
13
|
RPM users can install the "ruby193-rubygem-foreman_docker" or "rubygem-foreman_docker" packages.
|
14
|
|
15
|
## Compatibility
|
16
|
|
17
|
| Foreman Version | Plugin Version |
|
18
|
| ---------------:| --------------:|
|
19
|
| >= 1.5 | 0.0.1 |
|
20
|
|
21
|
## Testing
|
22
|
|
23
|
Run `rake test:docker:test` from your Foreman directory to run the test suite.
|
24
|
|
25
|
## Latest code
|
26
|
|
27
|
You can get the develop branch of the plugin by specifying your Gemfile in this way:
|
28
|
|
29
|
gem 'foreman_docker', :git => "https://github.com/theforeman/foreman-docker.git"
|
30
|
|
31
|
# Copyright
|
32
|
|
33
|
Copyright (c) 2014 Amos Benari
|
34
|
|
35
|
This program is free software: you can redistribute it and/or modify
|
36
|
it under the terms of the GNU General Public License as published by
|
37
|
the Free Software Foundation, either version 3 of the License, or
|
38
|
(at your option) any later version.
|
39
|
|
40
|
This program is distributed in the hope that it will be useful,
|
41
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
42
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
43
|
GNU General Public License for more details.
|
44
|
|
45
|
You should have received a copy of the GNU General Public License
|
46
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|