public static Process run()

in containers-docker-local/src/main/java/org/apache/aries/containers/docker/local/impl/ProcessRunner.java [39:45]


    public static Process run(String ... args) {
        try {
            return run(Collections.emptyMap(), args);
        } catch (IOException | InterruptedException e) {
            throw new RuntimeException(e);
        }
    }