From 6a988d8297a3617f5392b0326a2d5c406e8a0712 Mon Sep 17 00:00:00 2001 From: Disassembler Date: Sun, 29 Apr 2018 22:17:37 +0200 Subject: [PATCH] Stop GNU Health container using SIGINT --- gnuhealth/etc/init.d/gnuhealth | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnuhealth/etc/init.d/gnuhealth b/gnuhealth/etc/init.d/gnuhealth index 1fca697..3273215 100755 --- a/gnuhealth/etc/init.d/gnuhealth +++ b/gnuhealth/etc/init.d/gnuhealth @@ -25,5 +25,5 @@ stop_pre() { } stop() { - /usr/bin/docker stop gnuhealth + /usr/bin/docker kill -s SIGINT gnuhealth }