Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mapic/shiny
Open Source Shiny Server Docker setup with Auth0 proxy
https://github.com/mapic/shiny
docker r shiny-apps shiny-server
Last synced: 8 days ago
JSON representation
Open Source Shiny Server Docker setup with Auth0 proxy
- Host: GitHub
- URL: https://github.com/mapic/shiny
- Owner: mapic
- License: agpl-3.0
- Created: 2018-10-02T10:52:11.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-01-29T23:27:36.000Z (almost 4 years ago)
- Last Synced: 2024-08-13T07:16:05.384Z (4 months ago)
- Topics: docker, r, shiny-apps, shiny-server
- Language: Shell
- Homepage:
- Size: 55.7 KB
- Stars: 8
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - mapic/shiny - Open Source Shiny Server Docker setup with Auth0 proxy (Shell)
README
# Shiny Server
Self-hosting of Shiny Apps with Shiny Server Docker setup. Please see the [wiki](https://github.com/mapic/shiny/wiki) for details.### Docker Images
| Docker Image | Description | Build status |
| ------------- |-------------|:-----:|
| [`mapic/shiny-server`](https://github.com/mapic/shiny-server.docker) | Shiny Server 1.5.9 | [![Build Status](https://travis-ci.org/mapic/shiny-server.docker.svg?branch=master)](https://travis-ci.org/mapic/shiny-server.docker) |
| [`mapic/shiny-auth0`](https://github.com/mapic/shiny-auth0) | Multi-factor authentication with Auth0 | [![Build Status](https://travis-ci.org/mapic/shiny-auth0.svg?branch=master)](https://travis-ci.org/mapic/shiny-auth0) |
| [`mapic/shiny-nginx`](https://github.com/mapic/shiny-nginx.docker) | NginX Reverse-Proxy with SSL | [![Build Status](https://travis-ci.org/mapic/shiny-nginx.docker.svg?branch=master)](https://travis-ci.org/mapic/shiny-nginx.docker) |
| [`mapic/sftp`](https://github.com/mapic/sftp) | Secure FTP for uploading of Shiny apps | [![Build Status](https://travis-ci.org/mapic/sftp.svg?branch=master)](https://travis-ci.org/mapic/sftp) |### Versions
| Program | Version | Release Date | Changelog |
| ------- | ------- | ------------ | --------- |
| Shiny Server | 1.5.9 | 2018-09-12 | [Open Source](https://github.com/rstudio/shiny-server/blob/master/NEWS) |
| R | 3.5.1 | 2018-07-02 | _["Feather Spray"](https://stat.ethz.ch/pipermail/r-announce/2018/000626.html)_ |
| Ubuntu | 16.04 | 2018-08-03 | [xenial](https://wiki.ubuntu.com/XenialXerus/ReleaseNotes/ChangeSummary/16.04.3) |
| NodeJS | v8.11.3 | 2018-06-12 | [LTS](https://nodejs.org/en/blog/release/v8.11.3/)#### R packages versions
Please see the [wiki/Versions](https://github.com/mapic/shiny/wiki/Versions) for a list of R package versions.## Installation
See the [wiki](https://github.com/mapic/shiny/wiki/How-to-setup-a-Shiny-Server-on-Amazon-AWS#install-mapicshiny-repository) for installation instructions.
## Manage Shiny Server
### Start
```bash
# start server
docker-compose up
```### Stop
```bash
# stop server
docker-compose kill
```### Show running logs
```bash
# show logs
docker-compose logs -f -t
```Testing...