From 1cdafc71463b1bbbf957ea18e3a8cd224d7a0b96 Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Tue, 15 Sep 2015 11:28:51 +0200 Subject: [PATCH] Use exec to start IPFS daemon This incorporates feedback from @RX14 in #1685 and might fix #1537 as the ipfs daemon would get the stop signal from the docker daemon... Maybe that way it stops in a cleaner manner... License: MIT Signed-off-by: Knut Ahlers --- bin/container_daemon | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/container_daemon b/bin/container_daemon index 19a1f24e0..4b85fc9ec 100644 --- a/bin/container_daemon +++ b/bin/container_daemon @@ -18,4 +18,4 @@ else ipfs config Addresses.Gateway /ip4/0.0.0.0/tcp/8080 fi -ipfs daemon +exec ipfs daemon