mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-09 10:18:04 +08:00
Dockerfile: Deprecate implicit daemon argument
After the discussion in https://github.com/ipfs/go-ipfs/pull/3573 this patch prints a deprecation warning if: 1) the image has been executed with additional arguments 2) the first argument isn't daemon This way people are able to migrate to the new syntax without any breaking changes. License: MIT Signed-off-by: kpcyrd <git@rxv.cc>
This commit is contained in:
parent
ac2d7a001d
commit
77e4c64ac0
@ -74,3 +74,6 @@ VOLUME $IPFS_PATH
|
||||
# 1. There's an fs-repo, and initializes one if there isn't.
|
||||
# 2. The API and Gateway are accessible from outside the container.
|
||||
ENTRYPOINT ["/usr/local/bin/start_ipfs"]
|
||||
|
||||
# Execute the daemon subcommand by default
|
||||
CMD ["daemon"]
|
||||
|
||||
@ -53,3 +53,4 @@ RUN cd $SRC_PATH \
|
||||
USER ipfs
|
||||
VOLUME $IPFS_PATH
|
||||
ENTRYPOINT ["/usr/local/bin/start_ipfs"]
|
||||
CMD ["daemon"]
|
||||
|
||||
@ -19,4 +19,20 @@ else
|
||||
ipfs config Addresses.Gateway /ip4/0.0.0.0/tcp/8080
|
||||
fi
|
||||
|
||||
# if the first argument is daemon
|
||||
if [ "$1" = "daemon" ]; then
|
||||
# filter the first argument until
|
||||
# https://github.com/ipfs/go-ipfs/pull/3573
|
||||
# has been resolved
|
||||
shift
|
||||
else
|
||||
# print deprecation warning
|
||||
# go-ipfs used to hardcode "ipfs daemon" in it's entrypoint
|
||||
# this workaround supports the new syntax so people start setting daemon explicitly
|
||||
# when overwriting CMD, making this PR safe to merge
|
||||
echo "DEPRECATED: arguments have been set but the first argument isn't 'daemon'" >&2
|
||||
echo "DEPRECATED: run 'docker run ipfs/go-ipfs daemon $@' instead" >&2
|
||||
echo "DEPRECATED: see https://github.com/ipfs/go-ipfs/pull/3573 for more information" >&2
|
||||
fi
|
||||
|
||||
exec ipfs daemon "$@"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user