camunda/camunda-platform

Can't start camunda platform -> ERROR: for tasklist Container "<container-id>" is unhealthy.

eriknyk opened this issue · 3 comments

Camunda platform with docker-compose won't start

$ docker-compose up

Output:

Creating network "camunda-platform_identity-network" with the default driver
Creating network "camunda-platform_camunda-platform" with the default driver
Creating volume "camunda-platform_zeebe" with default driver
Creating volume "camunda-platform_elastic" with default driver
Creating volume "camunda-platform_postgres" with default driver
Creating volume "camunda-platform_keycloak-theme" with default driver
Creating volume "camunda-platform_kibana" with default driver
Pulling postgres (postgres:14.5-alpine)...
14.5-alpine: Pulling from library/postgres
213ec9aee27d: Pull complete
40ab741cca09: Pull complete
c3636f308d36: Pull complete
ffb93d592d77: Pull complete
38e1167f56e0: Pull complete
5da721964db9: Pull complete
f4263eceafe0: Pull complete
b58169c5d1b0: Pull complete
Digest: sha256:ac09c433f64f2d310a83e5cc24dadc13561f645199d4ec8e503824de22e14668
Status: Downloaded newer image for postgres:14.5-alpine
Pulling keycloak (bitnami/keycloak:19.0.3)...
19.0.3: Pulling from bitnami/keycloak
f8c1c832ce65: Pull complete
afe50b8553f7: Pull complete
Digest: sha256:4ac04104d20d4861ecca24ff2d07d71b34a98ee1148c6e6b6e7969a6b2ad085e
Status: Downloaded newer image for bitnami/keycloak:19.0.3
Pulling identity (camunda/identity:8.2.5)...
8.2.5: Pulling from camunda/identity
f56be85fc22e: Pull complete
5301b279ac12: Pull complete
e91d288932f4: Pull complete
abb1176f493c: Pull complete
6a49d8ac4653: Pull complete
091cd229a1b3: Pull complete
Digest: sha256:7d9872275eecdb3b7f3903c75a3b951b2ca923f518070207996f65a04cc4e8bb
Status: Downloaded newer image for camunda/identity:8.2.5
Pulling elasticsearch (docker.elastic.co/elasticsearch/elasticsearch:7.17.9)...
7.17.9: Pulling from elasticsearch/elasticsearch
36a9c60c46d0: Pull complete
e702cbf68995: Pull complete
d42ba0f6aa39: Pull complete
13c59ecc70cc: Pull complete
12d112623fed: Pull complete
3e95eee02a15: Pull complete
e8819c48f163: Pull complete
ea0623c40fc9: Pull complete
a621ebe36959: Pull complete
Digest: sha256:59b37f77bd8b015d5b60f75bebb22d06028f7f15036f9d3559d2b7c16ece74db
Status: Downloaded newer image for docker.elastic.co/elasticsearch/elasticsearch:7.17.9
Pulling optimize (camunda/optimize:3.10.0)...
3.10.0: Pulling from camunda/optimize
f56be85fc22e: Already exists
a6b9f168b6c3: Pull complete
4f4fb700ef54: Pull complete
035fcf47fbde: Pull complete
Digest: sha256:a7168875f9640c426fd87131c9f0c8bdc52b96b9a86274096c31082a8f950eb6
Status: Downloaded newer image for camunda/optimize:3.10.0
Pulling zeebe (camunda/zeebe:8.2.5)...
8.2.5: Pulling from camunda/zeebe
99803d4b97f3: Pull complete
b493027a1bf3: Pull complete
8480b25d7069: Pull complete
7d075581aba1: Pull complete
80bf06916f7f: Pull complete
36c4856f2b8c: Pull complete
93fbabe905c4: Pull complete
58ede824ec6d: Pull complete
a44c06fac59f: Pull complete
Digest: sha256:fcbfb34436340d71140d9bebe71f1052dec0d423f56379f7e7141ad34ed318fc
Status: Downloaded newer image for camunda/zeebe:8.2.5
Pulling tasklist (camunda/tasklist:8.2.5)...
8.2.5: Pulling from camunda/tasklist
99803d4b97f3: Already exists
b493027a1bf3: Already exists
8480b25d7069: Already exists
7d075581aba1: Already exists
7d0cfb1e838e: Pull complete
1a63c03d5343: Pull complete
74f4da491828: Pull complete
62d62e981b6a: Pull complete
Digest: sha256:3b28e4b01d8c927b436678e43062c0e04a3717c4314aec58b73222da78c0e937
Status: Downloaded newer image for camunda/tasklist:8.2.5
Pulling operate (camunda/operate:8.2.5)...
8.2.5: Pulling from camunda/operate
99803d4b97f3: Already exists
b493027a1bf3: Already exists
8480b25d7069: Already exists
7d075581aba1: Already exists
7d9809ff6bf5: Pull complete
0cdcb2ebfbbf: Pull complete
50a2c4d79769: Pull complete
28e3314906b2: Pull complete
Digest: sha256:d824c8aaa669ee073c3980103a82041d7275af74108c475906b9384e7bfd6319
Status: Downloaded newer image for camunda/operate:8.2.5
Pulling connectors (camunda/connectors-bundle:0.19.2)...
0.19.2: Pulling from camunda/connectors-bundle
1bc677758ad7: Pull complete
0d0e0ecb256a: Pull complete
212512b6dedf: Pull complete
648d9d544695: Pull complete
c200a88046e1: Pull complete
c20b0a9ad1d3: Pull complete
016f3d61e066: Pull complete
1bdd5174183a: Pull complete
Digest: sha256:d1dfda09c78602303c6be16d188b2f8b10066a02718ad144702505f9e5626635
Status: Downloaded newer image for camunda/connectors-bundle:0.19.2
Creating elasticsearch ... done
Creating postgres      ... done
Creating keycloak      ... done
Creating identity      ... done
Creating optimize      ... done
Creating zeebe         ... done
Creating operate       ... done
Creating connectors    ... done

ERROR: for tasklist  Container "83757b9637fd" is unhealthy.
ERROR: Encountered errors while bringing up the project.

I've tried many times even removing completelly all images, containers, volumes & networks. and result is always the same.
I've tried on MacOS with Docker version 20.10.12, build e91ed57

Any idea about how to fix this?
Best Regards.

I'll take a look.

I see you wrote that you were trying to use

docker-compose up

instead of

docker compose up

which is the v2 of the docker compose tool.

Since I make use out of the latter for my manual and automated tests, my results might be different from yours. But in my manual test, everything came up normally. Could you try again using docker compose up, and make use of the compose plugin that could be installed with these instructions?

I see that our README.md references the old version of docker-compose, and contradictingly says to use the latest version. I will update this.

it works with docker compose v2,
Thanks for you help @jessesimpson36