itmicus / cmdbuild_docker

CMDBuild 3.4 with READY2USE 2.3 and openMAINT 2.3 in Docker
85 stars 56 forks source link

ERROR: manifest for itmicus/cmdbuild:r2u-2.0-3.3 not found: manifest unknown: manifest unknown #21

Closed anirimot closed 4 years ago

anirimot commented 4 years ago

I have a ERROR.

docker-compose up -d ↓ Pulling cmdbuild_app (itmicus/cmdbuild:r2u-2.0-3.3)... ERROR: manifest for itmicus/cmdbuild:r2u-2.0-3.3 not found: manifest unknown: manifest unknown

afcarvalho1991 commented 4 years ago

Perhaps you need to build the image locally, I don't know if @itmicus sent the images to dockerhub.

Wait a few hours I will send you the command to compile it.

anirimot commented 4 years ago

Perhaps you need to build the image locally, I don't know if @itmicus sent the images to dockerhub.

Wait a few hours I will send you the command to compile it.

Thank you for your response.I am waiting.

afcarvalho1991 commented 4 years ago

You need to first generate the image (locally), the image itmicus/cmdbuild:r2u-2.0-3.3 is not published at docker hub see here. As a result, you need to compile the Dockerfile yourself (see image below), the commands docker run and docker pull won't work for you because the image itmicus/cmdbuild:r2u-2.0-3.3 hasn't been published.

image

Thus, the steps to follow are:

docker build -t itmicus/cmdbuild:r2u-2.0-3.3 ready2use-2.0-3.3/. --label "version=1.0" --label "maintaner=Itmicus <order@itmicus.ru>"
cd ready2use-2.0-3.3
docker-compose up

#wait a few minutes until you see something like this on your terminal

#cmdbuild_app  | 22-Oct-2020 06:47:26.231 INFO [main] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory [/usr/local/tomcat/webapps/manager] has finished in [86] ms
#cmdbuild_app  | 22-Oct-2020 06:47:26.266 INFO [main] org.apache.coyote.AbstractProtocol.start Starting ProtocolHandler ["http-nio-8080"]
#cmdbuild_app  | 22-Oct-2020 06:47:26.349 INFO [main] org.apache.catalina.startup.Catalina.start Server startup in [43,504] milliseconds

Then access the following URL to your CMDBUILD website:

That is it.

image

André Carvalho.

mmmmarcel commented 2 years ago

Hi I have the same issue: root@*****:~/cmdbuild_docker/ready2use-2.0-3.3# docker-compose up -d Pulling cmdbuild_app (itmicus/cmdbuild:r2u-2.0-3.3)... ERROR: manifest for itmicus/cmdbuild:r2u-2.0-3.3 not found: manifest unknown: manifest unknown

docker build -t itmicus/cmdbuild:r2u-2.0-3.3 ready2use-2.0-3.3/. --label "version=1.0" --label "maintaner=Itmicus order@itmicus.ru"

result: ---> Running in 6dc1dfc623df

Any idea?