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 current compose file will just error if used directly with docker-compose up, which isn't ideal.
What would work as an alternative, is to split out the three flowdb containers into two additional compose files, so you can override the flowdb container.
e.g. docker-compose up gives you a bare flowdb, docker-compose up -f docker-compose.yml -f docker-compose-testdata.yml gives you testdata etc.
The text was updated successfully, but these errors were encountered:
Because there are multiple docker-compose yml files to be taken into
account now, we needed them _available_ somewhere, so they are now
getting downloaded into a temp folder that gets cleaned up on exit.
Via @josh-gree
The current compose file will just error if used directly with
docker-compose up
, which isn't ideal.What would work as an alternative, is to split out the three flowdb containers into two additional compose files, so you can override the flowdb container.
e.g.
docker-compose up
gives you a bare flowdb,docker-compose up -f docker-compose.yml -f docker-compose-testdata.yml
gives you testdata etc.The text was updated successfully, but these errors were encountered: