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
Our current docker build scripts still assume docker-compose v1. Version 2 has been out for a while now though, is stable, and the default version installed on many distros. However, it is not fully backward compatible, so our scripts will need a few adjustments:
the invocation has changed from docker-compose to docker compose (no dash)
the generated name for the image when using docker compose build has changed from the convention in v1, which breaks our build.sh script when trying to set tags
The text was updated successfully, but these errors were encountered:
Our current docker build scripts still assume docker-compose v1. Version 2 has been out for a while now though, is stable, and the default version installed on many distros. However, it is not fully backward compatible, so our scripts will need a few adjustments:
docker-compose
todocker compose
(no dash)docker compose build
has changed from the convention in v1, which breaks our build.sh script when trying to set tagsThe text was updated successfully, but these errors were encountered: