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
Initializing daemon...
go-ipfs version: 0.4.22-4e981576b-dirty
Repo version: 7
System version: amd64/linux
Golang version: go1.12.9
09:17:04.924 ERROR cmd/ipfs: error from node construction: could not build arguments for function "reflect".makeFuncStub (/usr/local/go/src/reflect/asm_amd64.s:12): failed to build provider.Provider: could not build arguments for function "github.com/ipfs/go-ipfs/core/node".ProviderCtor (/go/go-ipfs/core/node/provider.go:24): failed to build *provider.Queue: function "github.com/ipfs/go-ipfs/core/node".ProviderQueue (/go/go-ipfs/core/node/provider.go:19) returned a non-nil error: s3ds: filters or orders are not supported daemon.go:337
Error: could not build arguments for function "reflect".makeFuncStub (/usr/local/go/src/reflect/asm_amd64.s:12): failed to build provider.Provider: could not build arguments for function "github.com/ipfs/go-ipfs/core/node".ProviderCtor (/go/go-ipfs/core/node/provider.go:24): failed to build *provider.Queue: function "github.com/ipfs/go-ipfs/core/node".ProviderQueue (/go/go-ipfs/core/node/provider.go:19) returned a non-nil error: s3ds: filters or orders are not supported
I use this Dockerfile :
ENV GO111MODULE on
RUN git clone https://github.com/ipfs/go-ipfs.git
WORKDIR go-ipfs
RUN git checkout v0.4.22
RUN go get github.com/ipfs/go-ds-s3@latest
RUN echo "s3ds github.com/ipfs/go-ds-s3/plugin 0" >> plugin/loader/preload_list
RUN make build
RUN make install
WORKDIR /root
RUN apt-get update && apt-get -y install vim awscli jq
RUN go get github.com/whyrusleeping/ipfs-key
RUN go get -u github.com/Kubuxu/go-ipfs-swarm-key-gen/ipfs-swarm-key-gen
COPY entrypoint.sh /
RUN chmod a+x /entrypoint.sh
COPY config .
Unfortunately, filters aren't currently supported by this datastore. We don't use filters on the "/blocks" section of the datastore but we do use them when querying other prefixes. You'll either need to use a local datastore (leveldb) for everything other than "/blocks" or finish #39.
Hello,
I've an error running ipfs daemon :
I use this Dockerfile :
And this config :
Any idea ?
Thanks in advance,
Cyril
The text was updated successfully, but these errors were encountered: