socketcluster
socketcluster copied to clipboard
Docker can not pull :latest
In a Dockerfile currently you need to supply a version tag and :latest is not supported making the examples fail to compose or to pull with
docker pull socketcluster/socketcluster
Error message from console
manifest for socketcluster/socketcluster:latest not found
Temporary workaround
docker pull socketcluster/socketcluster:v14.3.2
or for Dockerfile
FROM socketcluster/socketcluster:v14.3.2