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
Currently the ./build.sh tar will fail if it is run on a fresh docker state with no cached non-built images (e.g. redis). Running a ./build.sh before this will cause the images to be downloaded and cached but this behavior is confusing.
This can also be helped by adding build: sections to each appropriate container within the docker-compose.yml so that docker itself knows which images are external and then docker compose ... pull --ignore-buildable will work to cache these images.
The text was updated successfully, but these errors were encountered:
Currently the
./build.sh tar
will fail if it is run on a fresh docker state with no cached non-built images (e.g. redis). Running a./build.sh
before this will cause the images to be downloaded and cached but this behavior is confusing.This can also be helped by adding
build:
sections to each appropriate container within thedocker-compose.yml
so that docker itself knows which images are external and thendocker compose ... pull --ignore-buildable
will work to cache these images.The text was updated successfully, but these errors were encountered: