README.md

Shiny app deployment

Objectives

Explore some ways to deploy shiny apps.

How to use this project

One can test this project using one the following method :

docker build -t shiny_test:v1 --file Dockerfiles/Dockerfile .
docker run --name shiny_test -p 3838:3838 shiny_test:v1
# optionnal step if docker hub is used / mandatory if the repository is not part of docker hub
# docker pull <name_of_the_repository>/shiny_test:v1
docker run --name shiny_test -p 3838:3838 <name_of_the_repository>/shiny_test:v1

Done so far and working with docker :

To serve app on diverse port (here e.g 1234) use :

docker run -d -p 1234:3838 --rm --name shiny_test shiny_pkg:1.2


goodfr/shiny_starter documentation built on Dec. 20, 2021, 12:42 p.m.