Reputation: 2611
Im triying to start a docker container : Docker version :
Docker version 1.6.2, build 7c8fca2
sudo docker run -p 8080:8080 rancher/server
but i got this error message !
FATA[0001] Error response from daemon: Cannot start container b75d05c38d0f19d59e9c12608c56aac756c1a5bf321ef2cca918e7a7b251904d: [8] System error: exec format error
this is my server info using uname -a
command :
Linux localhost.localdomain 3.13.0-137-generic #186-Ubuntu SMP Mon Dec 4 19:12:26 UTC 2017 i686 i686 i686 GNU/Linux
Docker images :
REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE
rancher/server latest 41e01154bc55 2 weeks ago 1.083 GB
Could you please advise what might the error that I may be committing or am I missing something ?
Upvotes: 2
Views: 1684
Reputation: 14185
You indicated in the question comments your Docker version is 1.6.2
. As per Rancher documentation anything below 1.12.3
is not supported. Update your Docker, best if you update to latest community edition (CE).
The guide how to install/update Docker on Ubuntu is found here.
Upvotes: 2