Docker: Error response from daemon: OCI runtime create failed: container_linux.go:296:
Docker is telling you that the command hit an error. It is trying to run the node image with the command -w. Since -w is not a command, it throws this error. This is because you have written node in a place you probably didn’t mean to. Your command is being interpreted like this: docker … Read more