R + Rstudio + shiny. Useful for development before deployment with `asachet/shiny-base`
272
These images are a stable and convenient base to package shiny apps, typically with a Dockerfile looking like:
FROM asachet/shiny-base:R3.5.2-stable-v1.1
# Add packages specific to this app
RUN install2.r -s --error \
radarchart \
googlesheets
WORKDIR /usr/local/src/mycoolapp
COPY data/ data/
COPY www/ www/
COPY *.R ./
COPY *.yml ./
EXPOSE 3838
CMD ["r", "-e", "shiny::runApp('.', port=3838, host='0.0.0.0', launch.browser=F)"]
rocker/r-vershiny and common packages like shinydashboard, shinyWidgets, shinythemes, DT for dataTableOutput, etctidyverse and ggplot-verselogging and configshiny-base for robustnessMySQL databasesRMariaDB instead of the legacy RMySQL package!rocker-rstudio rather than rocker:r-ver, but using the same version.rstudio in the browser.These Dockerfiles are under the MIT license. RStudio and Shiny are trademarks of RStudio, Inc.
Content type
Image
Digest
Size
547.9 MB
Last updated
about 7 years ago
docker pull asachet/shiny-dev:R3.5.2-stable-v1.3-fix