FATA[0000] Error pushing to registry: Tag does not exist

Hi everyone,
I’m getting the following error when pushing the image to docker hub

$ docker push ric03uec/radar-api2:master.28
 The push refers to a repository [docker.io/ric03uec/radar-api2] (len: 1)
 FATA[0000] Error pushing to registry: Tag does not exist: master.28 

The repository exists on docker hub

$ docker info

Containers: 75
Images: 265
Storage Driver: devicemapper
 Pool Name: docker-253:1-391967-pool
 Pool Blocksize: 65.54 kB
 Backing Filesystem: extfs
 Data file: /dev/loop0
 Metadata file: /dev/loop1
 Data Space Used: 8.376 GB
 Data Space Total: 107.4 GB

 Data Space Available: 73.42 GB
 Metadata Space Used: 18.66 MB
 Metadata Space Total: 2.147 GB
 Metadata Space Available: 2.129 GB
 Udev Sync Supported: true
 Data loop file: /var/lib/docker/devicemapper/devicemapper/data
 Metadata loop file: /var/lib/docker/devicemapper/devicemapper/metadata
 Library Version: 1.02.93-RHEL7 (2015-01-28)
Execution Driver: native-0.2
Kernel Version: 3.10.0-123.8.1.el7.x86_64
Operating System: CentOS Linux 7 (Core)
CPUs: 4
Total Memory: 7.798 GiB
Name: os-prod
ID: IGIG:2BVK:LSRD:WJZM:P5WU:P65G:PWWV:ONFK:7BVM:HPZO:W6SD:5U52
Username: ric03uec
Registry: [https://index.docker.io/v1/]

$ docker version

Client version: 1.6.2.el7
Client API version: 1.18
Go version (client): go1.4.2
Git commit (client): c3ca5bb/1.6.2
OS/Arch (client): linux/amd64
Server version: 1.6.2.el7
Server API version: 1.18
Go version (server): go1.4.2
Git commit (server): c3ca5bb/1.6.2
OS/Arch (server): linux/amd64

Everything works fine on a ubuntu 14.04 box. not sure if its a centos issue.

Thanks,

Looks to me that you don’t have image ric03uec/radar-api2:master.28 in your local.
Can you verify doing docker images in that centos box?

Execute this:

docker images | grep "ric03uec/radar-api2:master.28" |wc -l

If the result is 0, you try to push an inexistent image.