- Windows | How to Install Docker Desktop on Windows
- macOS | How to Install Docker Desktop on Mac
- Linux | How to Install Docker Desktop on Linux
- Create a
shinyApps
folder
- Copy the shinyapp to the folder
docker build . - shinycell
docker run --rm \
-v "./shinyApps/[shinyapp folder name]:/srv/shiny-server" \
-p 3838:3838 \
shinycell
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.