onyx

FYI: alternative Onyx :onyx: chat is at <https://gitter.im/onyx-platform/onyx> ; log can be found at <https://clojurians-log.clojureverse.org/onyx/index.html>
manuel 2018-12-12T11:12:30.021800Z

hi, I am trying to use onyx-template (https://github.com/onyx-platform/onyx-template). I created my project with lein new onyx-app my-app-name -- +docker, as stated in the README. Then: - lein uberjar - docker build . - docker-compose up And I get:

❯ docker-compose up
Pulling peer (peerimage:)...
ERROR: The image for the service you're trying to recreate has been removed. If you continue, volume data could be lost. Consider backing up your data before continuing.

Continue with the new image? [yN]y
Pulling peer (peerimage:)...
ERROR: pull access denied for peerimage, repository does not exist or may require 'docker login'

manuel 2018-12-12T11:13:22.022100Z

Any suggestion?

manuel 2018-12-12T11:16:00.022600Z

Found it: docker build -t peerimage . before docker-compose up.