Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abn/pyremedy-docker
Docker packaging for PyRemedy library
https://github.com/abn/pyremedy-docker
Last synced: 7 days ago
JSON representation
Docker packaging for PyRemedy library
- Host: GitHub
- URL: https://github.com/abn/pyremedy-docker
- Owner: abn
- License: mit
- Created: 2017-06-24T03:38:25.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-06-24T04:24:13.000Z (over 7 years ago)
- Last Synced: 2024-11-18T07:50:03.106Z (about 1 month ago)
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PyRemedy Docker
Docker packaging for [PyRemedy](http://pyremedy.readthedocs.io/en/latest/) library. This is intended as a template for your custom environment builds. By default the container includes 9.10 version of the linux API package from [RRR](https://rrr.se/cgi/index?pg=arapi).### Usage
In order to run a PyRemedy script, you can mount it in to the container and execute as shown below. In this example we assume `example.py` script to be in the `scripts` directory.
```sh
docker run --rm -it -v `pwd`/scripts:/scripts alectolytic/pyremedy example.py
```### Build Image
```sh
docker build \
--build-arg ARG PYREMEDY_VERSION=0.2.1 \
--build-arg ARG ARAPI_VERSION=910 \
--tag local/pyremedy .
```