unable to update eclipse che
See original GitHub issueHello I am unable to upgrade my eclipse che version from 5.6.0 to 5.7.1.
When upgrading, che give me this error :
ERROR: che is running. Stop before performing an upgrade.
However no container are running (docker ps
return no line).
Reproduction Steps:
From my terminal I ran this command: docker ps
to ensure that no container are running.
Next I run this command to upgrade my previous version to 5.7.1:
docker run -v /var/run/docker.sock:/var/run/docker.sock -v /home/damien/Documents/01_exploit/03_che/01_usine_dev:/data eclipse/che:5.7.1 upgrade
OS and version: Linux Your CLI version is ‘5.6.0’. Your installed version is ‘5.6.0’.
Diagnostics: Running the update command lead to this :
WARN: Did not detect TTY - interactive mode disabled INFO: (che cli): 5.7.1 - using docker 17.03.1-ce / native INFO: (che upgrade): Downloading che images for version 5.7.1… INFO: (che upgrade): Downloading done. ERROR: che is running. Stop before performing an upgrade.
For information, I am running my che container using this command :
docker run -it --rm -v /var/run/docker.sock:/var/run/docker.sock -v /home/damien/Documents/01_exploit/03_che/01_usine_dev:/data eclipse/che start
Issue Analytics
- State:
- Created 6 years ago
- Comments:5
Top GitHub Comments
@dcdh I was unable to reproduce.
Please, run `docker rm -f $(docker ps -aq) before upgrade command.
I had the same problem.
docker ps
was showing no containers, previous version of che was 5.6.0. Removing the container withdocker rm -f
helped.