generated from coatless-devcontainer/r-pkg
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathREADME.Rmd
264 lines (188 loc) · 7.2 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# shinydocker <a href="https://r-pkgs.thecoatlessprofessor.com/shinydocker/"><img src="man/figures/shinydocker-animated-logo.svg" align="right" height="138" alt="hex logo for shinydocker" /></a>
<!-- badges: start -->
[](https://github.com/coatless-rpkg/shinydocker/actions/workflows/R-CMD-check.yaml)


<!-- badges: end -->
`shinydocker` simplifies containerizing Shiny applications by automatically generating Docker configurations, building images, and managing containers. It supports both R and Python Shiny apps with intelligent detection of app type and dependencies.
> [!IMPORTANT]
>
> This package is currently in the prototype/experimental stage. It is not yet
> available on CRAN and may have bugs or limitations.
## Installation
You can install the development version of `shinydocker` from GitHub with:
```{r}
#| label: install-shinydocker
#| eval: false
# install.packages("remotes")
remotes::install_github("coatless-rpkg/shinydocker")
```
### Prerequisites
- R (>= 4.4.0)
- [Docker](https://www.docker.com/products/docker-desktop) installed and running (no login required)
- Optionally, [Docker Compose](https://docs.docker.com/compose/install/) for more advanced container management
## Quick Start
With `shinydocker`, you can containerize your Shiny app in just a few lines of code.
Here's two ways to get started with the package!
### One-Command Export
The simplest way to containerize a Shiny app is to use the `shinydocker::export()` function:
```{r}
#| label: quick-export
#| eval: false
library(shinydocker)
# Export app to Docker with a single command (detects app type automatically)
shinydocker::export("path/to/your/shinyapp", run = TRUE)
```
### Example: Converting the "Hello World" Shiny App
To get started, let's convert the classic "Hello World" Shiny app to a Docker container:
```{r}
#| label: export-hello-world
#| eval: false
# Copy the Hello World example from the shiny package
app_dir <- "hello_world_app"
system.file("examples", "01_hello", package = "shiny") |>
fs::dir_copy(app_dir, overwrite = TRUE)
# Export to Docker and run
shinydocker::export(app_dir, run = TRUE, detach = TRUE)
# The console will show a URL where you can access your containerized app
# Stop the container when done
shinydocker::stop_container()
```
### Step-by-Step Workflow
For more control over the containerization process:
```{r}
#| label: step-by-step
#| eval: false
library(shinydocker)
# 1. Create Docker configuration
shinydocker::dockerize("path/to/your/shinyapp")
# 2. Build Docker image
shinydocker::build_image("path/to/your/shinyapp")
# 3. Run the container on port 8080
shinydocker::run_container("path/to/your/shinyapp", port = 8080, detach = TRUE)
# 4. When done, stop the container
shinydocker::stop_container("path/to/your/shinyapp")
```
### R or Python Shiny Apps
`shinydocker` automatically detects and containerizes either R or Python Shiny apps
by detecting the app type and dependencies in the app directory. The app type
is determined by the presence of either a `app.R`/`server.R`/`ui.R` file for R Shiny apps
or a `app.py`/`server.py`/`ui.py` file for Python Shiny apps. Dependencies are detected
automatically from the app source for R Shiny apps and a `requirements.txt` file for Python Shiny apps.
Therefore, you can use the same `export()` function for both R and Python Shiny apps:
```{r}
#| label: python-shiny
#| eval: false
shinydocker::export("path/to/your/python_shinyapp", run = TRUE)
```
### Examples
More examples are available in the package's [`inst/examples/shiny`](inst/examples/shiny) directory.
## Advanced Configuration
For more advanced use cases, you can customize the containerization process with additional options.
You can pass these options to the `dockerize()` function.
### Environment Variables
Pass sensitive information or configuration to your Shiny app:
```{r}
#| label: env-vars
#| eval: false
# Add environment variables to the container
shinydocker::dockerize("path/to/your/shinyapp",
env_vars = c(
API_KEY = "your-secret-key",
DB_HOST = "database.example.com",
LOG_LEVEL = "INFO"
))
```
### Custom Port Mapping
```{r}
#| label: custom-port
#| eval: false
# Run the container on a specific port
shinydocker::run_container("path/to/your/shinyapp", port = 3000)
```
### Custom Dockerfile Template
For advanced customization, you can provide your own Dockerfile template:
```{r}
#| label: custom-dockerfile
#| eval: false
# Use a custom Dockerfile template
shinydocker::dockerize("path/to/your/shinyapp",
custom_dockerfile = "path/to/custom/Dockerfile")
```
## Diagnostic Tools
`shinydocker` provides two situation report (sitrep) functions that offer
diagnostic information about your Docker environment and app containerization readiness.
### Check Docker Environment
```{r}
#| label: check-docker
#| eval: false
# Check if Docker is correctly set up
shinydocker::sitrep_docker()
```
### Analyze App Containerization Readiness
```{r}
#| label: check-app
#| eval: false
# Check if your app is ready for containerization
shinydocker::sitrep_app_conversion("path/to/your/shinyapp")
```
## Container Management
`shinydocker` provides functions to manage your Shiny app containers so that
you can start, stop, and clean up containers with ease without needing to remember
Docker commands or jump into terminal.
### Running Containers
```{r}
#| label: run-containers
#| eval: false
# Run with docker-compose (if available)
shinydocker::run_container("path/to/your/shinyapp", docker_compose = TRUE)
# Run with plain docker
shinydocker::run_container("path/to/your/shinyapp", docker_compose = FALSE)
```
### Stopping Containers
```{r}
#| label: stop-containers
#| eval: false
# Stop container for a specific app
shinydocker::stop_container("path/to/your/shinyapp")
# Stop all running containers
shinydocker::stop_container()
```
### Cleanup
```{r}
#| label: cleanup
#| eval: false
# Remove containers for a specific app
shinydocker::cleanup_container("path/to/your/shinyapp")
# Remove all shinydocker containers and images
shinydocker::cleanup_container(remove_images = TRUE, force = TRUE)
# Clean up and run docker system prune
shinydocker::cleanup_container(prune = TRUE)
```
## Troubleshooting
If you encounter issues:
1. Run `shinydocker::sitrep_docker()` to check Docker installation
2. Run `shinydocker::sitrep_app_conversion("path/to/your/shinyapp")` to analyze app issues
3. Check for port conflicts with `shinydocker::is_port_available(3838)`
Need more help? Consider opening an [issue](https://github.com/coatless-rpkg/shinydocker/issues/new) on the repository.
## Citation
If you use `shinydocker` in your research or project, please consider citing it:
```{r}
#| label: citation
#| eval: false
citation("shinydocker")
```
## License
AGPL (>= 3)