Sign inSign up

bezuidenhout/openhds

By bezuidenhout

Updated over 2 years ago

Build of openhds on tomat 6 and openjdk 7

Image
0

10K+

bezuidenhout/openhds repository overview

Overview

OpenHDS 1.6 build with Tomcat 6 and OpenJDK 7

What is OpenHDS

OpenHDS is a multi-component data platform for Health and Demographic Surveillance, based on client-server architecture and using tablet computers for point-of-capture digitization of data. This document provides an overview of the system. It covers the setup and administration of the server and tablet components of the platform. It contains guides for field workers, field supervisors, and data managers. Finally, it describes the setup and use of a virtualized OpenHDS system for testing and evaluation purposes. OpenHDS was developed by University of Calabar, Nigeria; University of Southern Maine, US; and Ifakara Health Institute, Tanzania; and first deployed in Akpabuyo HDSS, Cross River, Nigeria. All groups continue contributing to the development of OpenHDS.

How to use this image

Example

version: '3.9'

services:
  mysql:
    image: linuxserver/mariadb:10.6.12
    restart: unless-stopped
    environment:
      - TZ=Africa/Johannesburg
      - PUID=501
      - MYSQL_USER=openhds
      - MYSQL_PASSWORD=mypassword
      - MYSQL_ROOT_PASSWORD=myrootpassword
      - MYSQL_DATABASE=openhds
    volumes:
      - ./data/mysql/databases:/config/databases:cached
  openhds:
    image: openhds
    depends_on:
      - "mysql"
    ports:
      - 8443:8443
    environment:
      - TZ=Africa/Johannesburg
      - OPENHDS_DB_HOST=mysql
      - OPENHDS_DB_USER=openhds
      - OPENHDS_DB_PASSWORD=mypassword
      - OPENHDS_DB_NAME=openhds
      - OPENHDS_DB_CHARSET=UTF-8
      - JAVA_OPTS=-Xmx4096M -Xms4096M

License

As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).

As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.

Tag summary

Content type

Image

Digest

sha256:59503244e

Size

229 MB

Last updated

over 2 years ago

docker pull bezuidenhout/openhds