/ShinyCell-Docker

Shiny Interactive Web Apps for Single-Cell Data

Primary LanguageRGNU General Public License v3.0GPL-3.0

How run ShinyCell-Docker

Requiments

Docker

ShinnyApp

  • Create a shinyApps folder
  • Copy the shinyapp to the folder

Build docker image

How to Build

docker build . - shinycell

Run docker image

How to run this container

docker run --rm \
-v "./shinyApps/[shinyapp folder name]:/srv/shiny-server" \ 
-p 3838:3838 \
shinycell

How to run multiple shinyapps at the same time using docker compose file

Use the docker compose file template to run multiple apps, change the host ports is required.

    ports:
        - [host-port]:3838

The command below allows to run multiple container instances on one command.

docker compose up -d

| This instruction assumes that is run on the path of this code.