OHDSI / Broadsea

Broadsea deploys the core OHDSI technology stack (Atlas & R Hades), using cross-platform Docker container technology.
http://ohdsi.github.io/Broadsea/
Apache License 2.0
71 stars 54 forks source link

docker compose pull does not pull latest images when using profiles #111

Open mariosyndena opened 8 months ago

mariosyndena commented 8 months ago

the suggested way of starting the service according to README.md is

docker-compose pull && docker-compose --profile default up -d

However, since profiles are used, this does not pull the latest image of any of the used services except for traefik (at least on ubuntu 22.04). Suggested fix: use the command

docker-compose --profile default pull && docker-compose --profile default up -d

or

docker-compose --profile default up --pull always -d

instead.

alondhe commented 8 months ago

Thanks @mariosyndena - we will adjust in the Readme. We do lock in to certain versions of images to try to keep things working as smoothly as possible.