Hi,
i am unable to use the latest ubuntu 16.04 image. Doesn’t matter what i try to start in the image, docker says container command not found.
This is what i did.
$docker pull ubuntu:16.04
16.04: Pulling from library/ubuntu
5ba4f30e5bea: Already exists
6874f9870f5f: Pull complete
4c876570bd7d: Pull complete
10fb34ebccea: Pull complete
Digest: sha256:f1b592e2de671105255a0c0b7b2f71a92b829403e8fc845e3482667ecc301780
Status: Downloaded newer image for ubuntu:16.04
$docker run -it ubuntu:16.04
exec: “/bin/bash”: stat /bin/bash: no such file or directory
docker: Error response from daemon: Container command not found or does not exist…
$docker run -it ubuntu:16.04 /bin/sh
exec: “/bin/sh”: stat /bin/sh: no such file or directory
docker: Error response from daemon: Container command not found or does not exist…
$docker version
Server:
Version: 1.10.3
API version: 1.22
Go version: go1.5.4
Git commit: 9e83765
Built:
OS/Arch: linux/amd64
$uname -a
Linux XXX 3.12.57-60.35-default #1 SMP Tue Mar 22 10:47:09 UTC 2016 (1cd55eb) x86_64 x86_64 x86_64 GNU/Linux
$docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
ubuntu 14.04 38c759202e30 2 days ago 196.6 MB
ubuntu 16.04 12543ced0f6f 2 weeks ago 122.4 MB
ubuntu latest 12543ced0f6f 2 weeks ago 122.4 MB
With the ubuntu 14.04 image it works
$docker run -it ubuntu:14.04
root@61a015350322:/#
Any ideas on this topic?