Hi,
Thanks for replying, I had meant to update this. The issue has been related to us having a HTTP proxy. I've got around this by forking the am and Archivematica repositories and updating the submodule within am to point to our fork of Archivematica. I've also updated the docker-compose.yml to add proxy settings to build.args for each of the images (and no_proxy so that the containers can see each other). I've updated the dashboard dockerfile within Archivematica to add
RUN su -l archivematica -c "npm config set proxy $HTTP_PROXY && npm config set https-proxy $HTTPS_PROXY"
RUN su -l archivematica -c "git config --global http.proxy $HTTP_PROXY && git config --global https.proxy $HTTPS_PROXY"
So that git and npm also know about the proxy as they don't use the environment variables.
Charles