|
@@ -46,8 +46,29 @@ In principle, the service should be running at `http://localhost:8443/labkey`. C
|
|
|
docker logs config-db-1
|
|
|
docker logs config-web-1
|
|
|
docker exec -it config-db-1 bash
|
|
|
-```
|
|
|
|
|
|
+```
|
|
|
+
|
|
|
+### Add ggplot2 to R
|
|
|
+
|
|
|
+Connect to running instance of labkey:
|
|
|
+
|
|
|
+```bash
|
|
|
+docker exec -it config_labkey-web_1 bash
|
|
|
+```
|
|
|
+
|
|
|
+Start R:
|
|
|
+
|
|
|
+```bash
|
|
|
+R
|
|
|
+```
|
|
|
+
|
|
|
+In R, install`ggplot2` with dependencies:
|
|
|
+
|
|
|
+```R
|
|
|
+install.packages('ggplot2', repos='http://cran.us.r-project.org', dependencies=TRUE)
|
|
|
+```
|
|
|
+
|
|
|
### Expected errors
|
|
|
|
|
|
Errors of the type `500: Unexpected server error` are common and related
|