I've seen a post similar to mine but mine's a bit different. I feel I maybe doing something wrong.
I've created this Dockerfile in a folder. Then in that folder:
docker build -t openalpr https://github.com/openalpr/openalpr.git
All went well: docker images
.
Create a container:
docker create --name foocontainer <IMAGE>
Now, docker container ls -a
I see my container. I need to ssh into it so I need to start before attach? docker start <container id>
No message after that so I then docker ps
I see nothing. I need to docker attach <container id>
so I can run bash
commands. Any help? Im on a Mac.