简体   繁体   中英

Dockerizing shiny-app using a Dockerfile

I want to dockerize a basic shiny-app using a Dockerfile and subsequently running docker build . from the working directory. I am looking at docker docs but cannot really tell the issue with my Dockerfile code.

The shiny-app

## libraries ##
library(data.table)
library(ggplot2)
library(shinydashboard)


## load data ##
google_data <- data.table(Date = c("01/01/2017",
                                   "01/02/2017", 
                                   "01/03/2017"), 
                          AdjClose = c(1200, 
                                       1250, 
                                       1150)) 


## ui.R ##
library(shinydashboard)

ui <- dashboardPage(
  dashboardHeader(title = "Google Stock Price"),
  dashboardSidebar(),
  dashboardBody(plotOutput("google_plot"))
)


## server.R ##
server <- function(input, output) { 
  output$google_plot <- renderPlot({ 
    ggplot(google_data, aes(x = Date, y = AdjClose, group = 1)) +
      geom_line()
  })
}

shinyApp(ui, server)

My Dockerfile

FROM quantumobject/docker-shiny


LABEL maintainer = "The Greconomist"


COPY app.R /var/wwww/


WORKDIR /var/www/


RUN  R -e "install.packages('gtable', repos='https://cran.rstudio.com/')"
RUN  R -e "install.packages('data.table', repos='http://cran.rstudio.com/')"
RUN  R -e "install.packages('shinydashboard', repos='http://cran.rstudio.com/')"
RUN  R -e "install.packages('ggplot2', repos='http://cran.rstudio.com/')"


EXPOSE 3838

I am using / extending the quantumobject/docker-shiny image found in docker hub. When running the docker build . the build is successful, but unable to to do a docker run [IMAGE] .

The result from docker run [IMAGE] is:

Starting pre-service scritps in /etc/my_init.d
*** Running: /etc/my_init.d/startup.sh
starting rc.local scritps
*** Running: /etc/rc.local
Booting runit daemon...
Process runsvdir running with PID 178
[2018-03-14 09:40:27.933] [INFO] shiny-server - Shiny Server v1.5.6.875 (Node.js v6.10.3)
[2018-03-14 09:40:27.937] [INFO] shiny-server - Using config file "/etc/shiny-server/shiny-server.conf"
[2018-03-14 09:40:27.982] [INFO] shiny-server - Starting listener on 0.0.0.0:3838

But accessing localhost:3838 give me nothing 在此处输入图片说明

The basic usage info for the base image at https://github.com/QuantumObject/docker-shiny applies also to the derived image: You have to tell docker that you want port 3838 from the container mapped to the host:

docker run -p 3838:3838 [IMAGE]

In addition, you should copy app.R to /srv/shiny-server . BTW, I would move that step to the end of your Dockerfile to make caching of intermediate images possible.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM