You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
the suggested way of starting the service according to
README.md
isHowever, 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
or
instead.
The text was updated successfully, but these errors were encountered: