Convert Docker Compose to Docker Run Commands
- Free software: MIT license
- Documentation: https://dc2dr.readthedocs.io.
Takes a docker-compose file, gives back a list of docker run commands.
The supported docker-compose keys are:
- build
- name
- restart
- volumes
- depends_on
- links
- ports
- expose
- environment
- command
- image
From this dir you can run:
`
python -m dc2dr.cli tests/example-compose.yml
`
Or from in a python script:
`
from dc2dr import parser
run_commands = parser.run_commands('path/to/compose.yml')
`
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.