You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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?
The text was updated successfully, but these errors were encountered: