Sha256: 14c8986048a60ce8775cadb0638a347fadf55d42e97bfc49d236d22e5d6969eb
Contents?: true
Size: 375 Bytes
Versions: 6
Compression:
Stored size: 375 Bytes
Contents
class KuberKit::Shell::Commands::DockerComposeCommands def run(shell, path, service:, command:, interactive: false) command_parts = [ "docker-compose", "-f #{path}", "run", service, command ] if interactive shell.interactive!(command_parts.join(" ")) else shell.exec!(command_parts.join(" ")) end end end
Version data entries
6 entries across 6 versions & 1 rubygems