mirror of
https://github.com/preparebuddyy/n8n-self-hosted.git
synced 2026-03-02 22:47:01 +00:00
10 lines
247 B
Bash
Executable File
10 lines
247 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This script starts the n8n application using Docker Compose.
|
|
# It runs the services in detached mode (-d) and scales the n8n-worker service.
|
|
|
|
date
|
|
|
|
# Start the container
|
|
# with 2 n8n workers
|
|
docker compose up -d --scale n8n-worker=2 |