Hello,

I'm using a MAC and I try to start a docker engine image First I pull the image using this command : docker pull axonivy/axonivy-engine, and then I try to run with this command : docker run -p 8080:8080 axonivy/axonivy-engine, but when I execute it I get the following error: /usr/lib/axonivy-engine/bin/docker-entrypoint.sh: line 11: /usr/lib/axonivy-engine-9/bin/AxonIvyEngine: No such file or directory I checked in my /usr/lib and I don't have any axonivy-engine nor axonivy-engine-9 folders

asked 07.02.2020 at 01:47

Marius's gravatar image

Marius
(suspended)
accept rate: 0%


The docker image axonivy/axonivy-engine (axonivy/axonivy-engine:latest) was broken. It has been fixed and you need to pull it again. You need to clean up your local docker registry by calling the command

docker rmi axonivy/axonivy-engine

Anyway, I strongly recommend to be stick to a LTS version, e.g.:

docker run -p 8080:8080 axonivy/axonivy-engine:8.0

Because axonivy/axonivy-engine always will give you the latest official release. As soon as we release our next Leading Edge version you will get the leading edge version.

link

answered 07.02.2020 at 02:34

Alex%20Suter's gravatar image

Alex Suter ♦♦
3.1k122247
accept rate: 84%

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "Title")
  • image?![alt text](/path/img.jpg "Title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×20

Asked: 07.02.2020 at 01:47

Seen: 1,386 times

Last updated: 07.02.2020 at 02:34