docker

2016-05-07T20:52:55.000008Z

I've been playing with the clojure docker image and trying to run the lein app template. Just hello world or whatever. And set up my folders like this

/Dockerfile
/docker-compose.yml
/hello/project.clj
/hello/src/hello/core.clj
Or whatever. Then do lein run command in docker-compose. And it says that no :main has been defined. Like it doesn't see the project.clj.

2016-05-07T20:53:43.000009Z

So I figured it was cause I threw it in a subdirectory. So I just moved it down into the base directory with Dockerfile and such. Didn't work either.

2016-05-07T20:54:41.000010Z

Is there an example out there showing docker with the clojure image working?