-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
64 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ __author__ = "Konrad Foerstner <[email protected]>" | |
__copyright__ = "2011-2014 by Konrad Foerstner <[email protected]>" | ||
__license__ = "ISC license" | ||
__email__ = "[email protected]" | ||
__version__ = "0.3.3" | ||
__version__ = "0.3.4" | ||
|
||
def main(): | ||
parser = argparse.ArgumentParser() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
Docker image | ||
============ | ||
|
||
`Docker <https://docker.com/>`_ is a light-weight way to deploy | ||
applications. We offer an `image for READemption | ||
<https://registry.hub.docker.com/u/konradfoerstner/reademption/>`_ | ||
that can be easily retrieved and used once you have `Docker installed | ||
<https://docs.docker.com/installation/>`_. To get the image run | ||
|
||
:: | ||
|
||
$ sudo docker pull konradfoerstner/reademption | ||
|
||
Now you have the image READempmtion image and should see it shown | ||
in your list of docker images: | ||
|
||
:: | ||
|
||
$ sudo docker images | ||
REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE | ||
reademption_0.3.3 latest 416dbb001c6b 2 weeks ago 802.5 MB | ||
konradfoerstner/reademption 0.3.3 416dbb001c6b 2 weeks ago 802.5 MB | ||
ubuntu 14.04 ba5877dc9bec 4 weeks ago 192.7 MB | ||
ubuntu latest ba5877dc9bec 4 weeks ago 192.7 MB | ||
|
||
You can simply start the contains by running the following command: | ||
|
||
:: | ||
|
||
$ sudo docker run -i -t reademption_0.3.3 | ||
root@3b9e7fd860ee:/# reademption -v | ||
READemption version 0.3.3 | ||
|
||
Inside of this environment you have access to the local installation | ||
of READemption. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
setup( | ||
name='READemption', | ||
version='0.3.3', | ||
version='0.3.4', | ||
packages=['reademptionlib', 'tests'], | ||
author='Konrad U. Förstner', | ||
author_email='[email protected]', | ||
|