From 61c8ee3fe2c56d9a58260009da5de2e97e032ec7 Mon Sep 17 00:00:00 2001 From: Cooper Larson Date: Wed, 29 Jul 2026 14:02:11 -0600 Subject: [PATCH] Update joplin-server.json Added the restart unless stopped condition for the server and database containers. Signed-off-by: Cooper Larson --- community-containers/joplin-server/joplin-server.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/community-containers/joplin-server/joplin-server.json b/community-containers/joplin-server/joplin-server.json index d33f306c..5e57ba0a 100644 --- a/community-containers/joplin-server/joplin-server.json +++ b/community-containers/joplin-server/joplin-server.json @@ -6,6 +6,7 @@ "display_name": "Joplin Server", "documentation": "https://github.com/nextcloud/all-in-one/tree/main/community-containers/joplin-server", "image": "joplin/server", + "restart": "unless-stopped", "depends_on": [ "nextcloud-aio-joplin-database" ], @@ -35,6 +36,7 @@ "image_tag": "18", "display_name": "Joplin Database (PostgreSQL)", "image": "postgres", + "restart": "unless-stopped", "internal_port": "5432", "environment": [ "POSTGRES_PASSWORD=%JOPLIN_DB_PASSWORD%", @@ -57,4 +59,4 @@ ] } ] -} \ No newline at end of file +}