How to run n8s on locally on Apple containers Mac
How to run n8s on locally on Apple containers Mac
Apple has recently inctroduced their own container solution. I have decided to test it and start n8s. This is what an official github n8n instruction says
1
2
docker volume create n8n_data
docker run -it --rm --name n8n -p 5678:5678 -v n8n_data:/home/node/.n8n docker.n8n.io/n8nio/n8n
However, I have decided to test it with containers command that I installed at my MAC.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
brew install container
container system start
container run -it --rm --name n8n -p 5678:5678 docker.n8n.io/n8nio/n8n
No encryption key found - Auto-generating and saving to: /home/node/.n8n/config
Permissions 0644 for n8n settings file /home/node/.n8n/config are too wide. This is ignored for now, but in the future n8n will attempt to change the permissions automatically. To automatically enforce correct permissions now set N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true (recommended), or turn this check off set N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=false.
Initializing n8n process
n8n ready on ::, port 5678
Migrations in progress, please do NOT stop the process.
Starting migration InitialMigration1588102412422
Finished migration InitialMigration1588102412422
Starting migration WebhookModel1592445003908
...
And, what can I say, … it works as charm!
This post is licensed under CC BY 4.0 by the author.
