Sign inSign up

edence/ohdsi-ares

By edence

•Updated over 1 year ago

Dockerization of the Ares application designed to monitor data quality across OMOP networks

Image
0

4.0K

edence/ohdsi-ares repository overview

⁠ohdsi-ares

Dockerization of the OHDSI/Ares⁠ application designed to monitor data quality across OMOP networks. This is the "front-end" application designed to work with data generated by OHDSI/AresIndexer⁠ which we also publish in image form as ohdsi-aresindexer⁠.

⁠Usage

Some general notes:

  • The is image is based on the nginxinc/nginx-unprivileged:1-alpine⁠ image, a publisher-verified image from NGINX, inc. which operates with reduced privileges.
  • runs non-root: uid=101(nginx) gid=101(nginx) groups=101(nginx)
  • the Ares app is installed in the document root /usr/share/nginx/html
  • listens on port 8080, can be used with a path-prefix of /ares
  • Ares data should be mounted to the /data volume and placed at /data/ares
  • Ares data can be generated using the ohdsi-aresindexer⁠ image

To start the ARES container, you can run the following command:

docker run \
  --rm \
  --detach \
  --publish 8080:8080 \
  --volume "$(pwd)/data:/data" \
  edence/ohdsi-ares:latest

A compose service implementation might look like:

services:
  ares:
    image: edence/ohdsi-ares:1
    environment:
      WEB_API_URL: "./"
      WEB_API_ENABLED": false
      DUCKDB_ENABLED": false
      CDM_NETWORK_NAME": ""
    ports:
      - "8080:8080"
    volumes:
      - "./data:/data:ro"

Tag summary

Content type

Image

Digest

sha256:9f51f3874…

Size

35.2 MB

Last updated

over 1 year ago

docker pull edence/ohdsi-ares