Dockerization of the Ares application designed to monitor data quality across OMOP networks
4.0K
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.
Some general notes:
uid=101(nginx) gid=101(nginx) groups=101(nginx)/usr/share/nginx/html8080, can be used with a path-prefix of /ares/data volume and placed at /data/aresTo 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"
Content type
Image
Digest
sha256:9f51f3874…
Size
35.2 MB
Last updated
over 1 year ago
docker pull edence/ohdsi-ares