Sha256: b46ea4565da3ed96e4a5c640cba0aa0ae7ead52926c998e8dccb2dd6919de06d
Contents?: true
Size: 506 Bytes
Versions: 7
Compression:
Stored size: 506 Bytes
Contents
module VagrantPlugins module DockerComposeProvisioner module Cap module Linux module DockerComposeInstall def self.docker_compose_install(machine, config) machine.communicate.tap do |comm| comm.sudo("curl -L https://github.com/docker/compose/releases/download/#{config.compose_version}/docker-compose-`uname -s`-`uname -m` > #{config.executable} chmod +x #{config.executable}") end end end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems