Skip to content

Managing Dicomifier on dockerHub

jcomedouteau edited this page Jan 26, 2021 · 1 revision

Managing dicomifier update using dockerHub

At the moment, dicomifier service is managed on dockerHub: https://hub.docker.com/repository/docker/jcomedouteau/dicomifier.ws

This is image should be updated regularly, when the dicomifier is updated => The "apt-get update" in the DockerFile is not done everytime

How to push an update to dockerHub?

docker build -t jcomedouteau/dicomifier.ws .

Here get the tagged name at the end of the execution, and you have to create a new tag [1.X] (currently 1.2) so that the change is taken into account

docker tag [TAG_YOU_GOT] jcomedouteau/dicomifier.ws:[1.X]

docker push jcomedouteau/dicomifier.ws:[1.X]

Then in docker-compose.yml, change the line of preclinical-bruker2dicom base image to match [1.X]

Clone this wiki locally