run-in-container
Version:
CLI to assist running commands inside containers
18 lines (17 loc) • 440 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const DockerCLI = {
executable: "docker",
subCommand: "run",
options: {
entrypoint: "--entrypoint",
environment: "--env",
interactive: "--interactive",
port: "--publish",
rm: "--rm",
workingDirectory: "--workdir",
tty: "--tty",
volume: "--volume",
},
};
exports.default = DockerCLI;