Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

docker: official ubuntu 14.04 image

I try to find the official Ubuntu 14.04 image:

docker search ubuntu | grep -i offi

But I only find this image, which I would trust:

ubuntu    Official Ubuntu base image

The other images are from unknown sources (like foouser/ubuntu...) , and I don't trust these sources.

like image 229
guettli Avatar asked Jun 24 '14 20:06

guettli


1 Answers

The one you found is the one you want. Just use the 14.04/trusty tag:

docker run -it ubuntu:trusty /bin/bash
like image 117
Evgeny Chernyavskiy Avatar answered Nov 02 '22 19:11

Evgeny Chernyavskiy