Sha256: ca0d7ac9fc98284c361d82fd6647539f83ebb6ede7a5e39032a7af4bba6b83b0
Contents?: true
Size: 1.76 KB
Versions: 6
Compression:
Stored size: 1.76 KB
Contents
# frozen_string_literal: true require 'bolt/error' require 'bolt/config/transport/base' module Bolt class Config module Transport class Docker < Base OPTIONS = { "host" => { type: String, desc: "Host name." }, "interpreters" => { type: Hash, desc: "A map of an extension name to the absolute path of an executable, "\ "enabling you to override the shebang defined in a task executable. The "\ "extension can optionally be specified with the `.` character (`.py` and "\ "`py` both map to a task executable `task.py`) and the extension is case "\ "sensitive. When a target's name is `localhost`, Ruby tasks run with the "\ "Bolt Ruby interpreter by default." }, "service-url" => { type: String, desc: "URL of the Docker host used for API requests." }, "shell-command" => { type: String, desc: "A shell command to wrap any Docker exec commands in, such as `bash -lc`." }, "tmpdir" => { type: String, desc: "The directory to upload and execute temporary files on the target." }, "tty" => { type: TrueClass, desc: "Whether to enable tty on exec commands." } }.freeze DEFAULTS = {}.freeze private def validate super if @config['interpreters'] @config['interpreters'] = normalize_interpreters(@config['interpreters']) end end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems