/dc2dr

Convert Docker Compose to Docker Run Commands

Primary LanguagePythonMIT LicenseMIT

dc2dr

Documentation Status Updates

Convert Docker Compose to Docker Run Commands

Features

Takes a docker-compose file, gives back a list of docker run commands.

The supported docker-compose keys are:

  • depends_on
  • links
  • ports
  • expose
  • environment
  • command
  • image

Usage

From this dir you can run:

` python ./dc2dr/cli.py tests/example-compose.yml `

Or from in a python script:

` from dc2dr import parser run_commands = parser.run_commands('path/to/compose.yml') `

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.