It's a simple proof of concept of medical data storage using Orthanc and Couchdb backends.
157
This example use differents containers to work. You can use the following docker-compose.yml to run all containers :
redis:
ports:
- 13002:6379/tcp
image: fw4spl/redis:latest
orthanc:
ports:
- 13004:4242/tcp
- 13003:8042/tcp
image: fw4spl/orthanc:latest
volumes:
- /var/seshat/orthanc:/data/orthanc:rw
couchdb:
ports:
- 13001:5984/tcp
image: fw4spl/couchdb:latest
volumes:
- /var/seshat/couchdb:/data/couchdb:rw
storage-node:
ports:
- 13005:8080/tcp
image: fw4spl/storage:0.5.3
links:
- orthanc:ORTHANC
- redis:REDIS
- couchdb:COUCHDB
webgl:
ports:
- 13000:80/tcp
environment:
STORAGE_HOST: 192.168.0.1
STORAGE_PORT: '13005'
image: fw4spl/webgl:0.5.3
links:
- storage-node:STORAGE
Content type
Unrecognized
Digest
Size
206.6 MB
Last updated
over 10 years ago
docker pull fw4spl/storage:0.5.3