From 873c4248549e26959c0bc8caa3deacf80a2943d2 Mon Sep 17 00:00:00 2001 From: Natalia Serrano Date: Thu, 31 Oct 2024 17:48:02 +0100 Subject: [PATCH] refs #1019 do not daemonise a Type=simple systemd service --- component-installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/component-installer.sh b/component-installer.sh index 83da585..557bed1 100644 --- a/component-installer.sh +++ b/component-installer.sh @@ -61,7 +61,7 @@ Requires=docker.service [Service] Restart=always -ExecStart=/usr/bin/docker run --rm --name ogGui-app -p 4200:4200 -v $ENV_FILE:/app/.env -d opengnsys/oggui:$oggui_version +ExecStart=/usr/bin/docker run --rm --name ogGui-app -p 4200:4200 -v $ENV_FILE:/app/.env opengnsys/oggui:$oggui_version ExecStop=/usr/bin/docker stop ogGui-app [Install]