README.md

R Docker application

Build Status

Helper library for KBC component development. The library provides basic functions related to docker Runner common interface.

Installation

Package is available only on Github, so you need to use devtools to install the package

devtools::install_github('keboola/r-docker-application', ref = 'master')

Examples

# Subclass the class to do something useful
MyApplication <- setRefClass(
    'MyApplication',
    contains = c("DockerApplication"),
    fields = list(
    ...
    ),
    methods = list(
    ...
    )
)

app <- MyApplication$new()
app->readConfig()
print(app$configData$parameters)

Also see the See development guide for help with extending KBC and for more examples.



keboola/r-docker-application documentation built on May 20, 2019, 8:34 a.m.