mirror of
https://github.com/preparebuddyy/n8n-self-hosted.git
synced 2026-03-02 22:47:01 +00:00
10 lines
203 B
Bash
Executable File
10 lines
203 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This script restarts the n8n application.
|
|
# It first stops the running containers and then starts them again using the start-docker.sh script.
|
|
|
|
date
|
|
|
|
docker compose stop
|
|
./start-docker.sh
|