Sign inSign up

cbiitss/econsent

By cbiitss

Updated about 10 years ago

eConsent tool deployment environment

Image
0

1.4K

cbiitss/econsent repository overview

Tags

latest, centos7, c7 (applications/econsent/econsent.c7.dockerfile) centos6, c6 (applications/econsent/econsent.c6.dockerfile)

Description

This image contains the deployment environment for the eConsent tool. The deployment procedure may look something like this:


  • Clone the econsent/common resources repositories git clone https://github.com/CBIIT/nci-webtools-dceg-econsent.git /tmp/econsent git clone https://github.com/CBIIT/nci-analysis-tools-web-presence.git /tmp/web_presence

  • Copy the application files to a local deployment directory sudo mkdir -p /local/econsent/app /local/econsent/logs sudo chown -R `id -u`:`id -g` /local/econsent cp -r /tmp/econsent/* /local/econsent/app/ cp -r /tmp/web_presence/common /local/econsent/app/

  • Pull the latest econsent image and start a new container docker pull cbiitss/econsent
docker run \
  --detach \
  --name econsent \
  --publish 8000:8000 \
  --user `id -u`:`id -g` \
  --volume /etc/localtime:/etc/localtime:ro \
  --volume /local/econsent/:/deploy/ \
  cbiitss/econsent

eConsent tool is now running on localhost:8000

Tag summary

Content type

Image

Digest

Size

212.5 MB

Last updated

about 10 years ago

docker pull cbiitss/econsent