Nothing
check_cont_general <- function(cont){
lapply(cont, function(co){
if(is.null(co)) return(NULL)
if(!grepl("/",co)){
stopper("Container must be specified in the following format:",
"'registry/owner/repo:tag'")
}
n_parts <- length(strsplit(gsub("[/]+","/",co),"/")[[1]])
return(n_parts)
})
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.