trajano / docker-volume-plugins

Managed docker volume plugins
Eclipse Public License 2.0
143 stars 60 forks source link

Error response from daemon: manifest for lukics/glusterfs-volume-plugin:latest not found #16

Open lukicsl opened 5 years ago

lukicsl commented 5 years ago

Managed to build the image on my raspberry pi.

Dockerfile: FROM centos:7 RUN yum install -q -y wget git glusterfs glusterfs-fuse attr RUN wget https://storage.googleapis.com/golang/go1.9.linux-armv6l.tar.gz && \ tar -C /usr/local -xzf go1.9.linux-armv6l.tar.gz && \ export PATH=$PATH:/usr/local/go/bin # put into ~/.profile RUN /usr/local/go/bin/go get github.com/trajano/docker-volume-plugins/glusterfs-volume-plugin && \ mv $HOME/go/bin/glusterfs-volume-plugin / && \ rm -rf $HOME/go && \ yum remove -q -y go git gcc && \ yum autoremove -q -y && \ yum clean all && \ rm -rf /var/cache/yum /var/log/anaconda /var/cache/yum /etc/mtab && \ rm /var/log/lastlog /var/log/tallylog

I build it with: docker build -t lukics/glusterfs-volume-plugin .

when I try to install it I get: $ docker plugin install lukics/glusterfs-volume-plugin --grant-all-permissions Error response from daemon: manifest for lukics/glusterfs-volume-plugin:latest not found What did I wrong?

trajano commented 5 years ago

Try pushing to docker hub.