mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-25 12:27:43 +08:00
This changes .go-ipfs to .ipfs everywhere. And by the way this defines a DefaultPathName const for this name. License: MIT Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
15 lines
239 B
Docker
15 lines
239 B
Docker
FROM zaqwsx_ipfs-test-img
|
|
|
|
RUN ipfs init -b=1024
|
|
ADD . /tmp/id
|
|
RUN mv -f /tmp/id/config /root/.ipfs/config
|
|
RUN ipfs id
|
|
|
|
EXPOSE 4031 4032/udp
|
|
|
|
ENV IPFS_PROF true
|
|
ENV IPFS_LOGGING_FMT nocolor
|
|
|
|
ENTRYPOINT ["/bin/bash"]
|
|
CMD ["/tmp/id/run.sh"]
|