https://github.com/bcbi/broadsea-methodslibrary
https://github.com/bcbi/broadsea-methodslibrary
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bcbi/broadsea-methodslibrary
- Owner: bcbi
- License: apache-2.0
- Created: 2022-03-10T14:50:24.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-10T14:56:08.000Z (over 4 years ago)
- Last Synced: 2025-03-27T23:23:27.815Z (over 1 year ago)
- Language: Dockerfile
- Size: 5.86 KB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BroadSea [In development]
Repository to store Docker container that will include the all of the OHDSI tools
### Some simple Mac OS X commands:
```
boot2docker init # Only required once
boot2docker start
boot2docker shellinit
eval "$(boot2docker shellinit)"
# Terminal R version
docker run --rm -it ohdsi/development /usr/bin/R
# Or run Rstudio on http://192.168.59.103:8787 and RServe on 192.168.59.103:6311
docker run -d -p 8787:8787 -p 6311:6311 -e USER=ohdsi -e PASSWORD=ohdsi ohdsi/development
boot2docker stop
```
### Testing RServe from R on `localhost`
```{r}
library(RSclient)
c <- RS.connect("192.168.59.103")
RS.eval(c, library(Cyclops))
RS.close(c)
```
### Background information
* Built upon the `hadleyverse` container; see [FILL-IN]