Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/unidata/cloudawips

AWIPS CAVE Streaming in a CentOS 7 Virtual Environment
https://github.com/unidata/cloudawips

awips centos7 data-visualization docker forecasting meteorology x11vnc xvfb

Last synced: about 1 month ago
JSON representation

AWIPS CAVE Streaming in a CentOS 7 Virtual Environment

Awesome Lists containing this project

README

        

# CloudStream AWIPS

This [docker image](https://hub.docker.com/r/unidata/cloudawips/) contains an instance of Unidata AWIPS CAVE running in a virtual X11 environment provided by [CloudStream](https://github.com/Unidata/cloudstream), accessed via a web browser.

#### Run AWIPS CAVE

From the command line, run

docker run -p 6080:6080 -it unidata/cloudawips

and then open [http://localhost:6080](http://localhost:6080)

![](https://www.unidata.ucar.edu/software/awips2/images/CloudAWIPS.jpg)

#### Build AWIPS CAVE Docker Image

git clone https://github.com/Unidata/CloudAWIPS.git
cd CloudAWIPS
make build

### Notes

* Specify the width and height on the command line:

docker run -p 6080:6080 -e SIZEW=1024 -e SIZEH=768 unidata/cloudawips

* This repository uses a modified `bootstrap.sh` which overrides the `unidata/cloudstream:centos7` file of the same name.
* AWIPS CAVE is the only application accessible through this app streaming environment, and is run full-screen, with no window decorations or titlebar.
* If you wish to run multiple sessions, or leverage dynamic port mapping, you would start CloudAWIPS as follows:

docker run -P -it unidata/cloudawips

* By default, CloudAWIPS does not use a password. You may secure your CloudAWIPS session with a password by using the `USEPASS` environmental variable to set a password for the session.

docker run -e USEPASS="password" -P -it unidata/cloudawips