From 8918649b36bd4d54cfe13e134a0261db2e32de2b Mon Sep 17 00:00:00 2001 From: Rob Colbert Date: Mon, 17 Feb 2025 11:27:08 -0500 Subject: [PATCH] added restart script to package.json --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 69a1df4..71734b5 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,7 @@ "description": "A skeleton for getting started with a self-hosted n8n environment running in Docker Compose.", "scripts": { "start": "cd docker-compose/withPostgres && docker compose up -d", + "restart": "cd docker-compose/withPostgres && docker compose restart", "stats": "cd docker-compose/withPostgres && docker compose stats", "stop": "cd docker-compose/withPostgres && docker compose down" },