Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to know that docker installed in redhat is community or enterprise edition?

Tags:

docker

redhat

Some person has install docker in my Redhat system . I want to know whether it is community edition or enterprise edition . How can i do so?

I know community edition is not for Redhat .

May be some person would have created centos.repo in Redhat and installed docker ce .

This is what

docker version

gives

enter image description here

When i do

"rpm -qif /usr/bin/docker"

enter image description here

like image 630
Himanshu sharma Avatar asked Jul 26 '17 11:07

Himanshu sharma


1 Answers

With docker version command

CE : Comunity edition
EE : Entreprise edition

So 17.06.0-ce correspond to community edition

Client:
 Version:      17.06.0-ce
 API version:  1.30
 Go version:   go1.8.3
 Git commit:   02c1d87
 Built:        Fri Jun 23 21:18:10 2017
 OS/Arch:      linux/amd64

Server:
 Version:      17.06.0-ce
 API version:  1.30 (minimum version 1.12)
 Go version:   go1.8.3
 Git commit:   02c1d87
 Built:        Fri Jun 23 21:17:03 2017
 OS/Arch:      linux/amd64
 Experimental: false

If you haven't ce or ee, it's because you have installed docker.io package, which is maintened by Ubuntu. Version: 1.12.3

On Windows, you can also look about docker here :
enter image description here

EDIT

Docker Community Edition (Docker CE) is not supported on RHEL. So, you have Docker entreprise edition.

See Docker documentation

Anyway, there are some ways to install docker-ce, but you will see docker community edition with docker version.

like image 78
callmemath Avatar answered Sep 28 '22 09:09

callmemath