Skip to content
Michael Wurster edited this page Apr 1, 2020 · 7 revisions

Getting Started

Run Winery using Docker Compose

It is recommended that your host or virtual machine has at least 2GB of memory.

  • Install Docker and Docker Compose
  • Clone the repository:
    git clone https://github.com/radon-h2020/winery && cd winery
    
  • [Optional] Build a Docker image based on your current working copy:
    docker-compose build
    
  • Start Winery:
    docker-compose up
    
  • Launch a browser: http://localhost:8080

Run Winery using Docker

Open a command prompt and execute the following command:

NOTE: Replace <path_on_your_host> with an empty directory path on your host system.

NOTE: Replace the value of variable PUBLIC_HOSTNAME with your host's public IP address.

docker run -it -p 8080:8080 \
  -e PUBLIC_HOSTNAME=localhost \
  -e WINERY_FEATURE_RADON=true \
  -e WINERY_REPOSITORY_PROVIDER=yaml \
  -e WINERY_REPOSITORY_URL=https://github.com/radon-h2020/radon-particles \
  -v <path_on_your_host>:/var/repository \
  radonconsortium/radon-gmt
Clone this wiki locally