No commit activity in last 3 years
No release in over 3 years
TRuby wrapper for Docker Compose
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 1.10
~> 10.0
 Project Readme

DockerComposeRuby

Simple Ruby wrapper for the docker compose cli

Installation

You need to have the docker compose cli installed.

Add this line to your application's Gemfile:

gem 'docker_compose_ruby'

And then execute:

$ bundle

Or install it yourself as:

$ gem install docker_compose_ruby

Usage

Set the path to your docker file.

$ DockerCompose.set_yaml_path('/path/to/docker-compose.yml')

Set the project name (if no name is set it will be tthe name of the compose file's directory).

$ DockerCompose.set_project_name('test_project')

Up the compose project containers.

$ DockerCompose.up

Delete the compose project containers.

$ DockerCompose.delete

Stop the compose project containers.

$ DockerCompose.stop

Start the compose project containers.

$ DockerCompose.start

Development

I wanted something to use in a project I'm building, and there really wasn't anything out there that gives me the simplicity of the cli, but without having to repeat myself.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/docker_compose_ruby.

License

The gem is available as open source under the terms of the MIT License.