Compose-Examples/examples/n8n
LRVT 5c3e1d769f
Update README.md
2024-02-22 12:29:00 +01:00
..
.env Update .env 2024-02-22 12:22:37 +01:00
README.md Update README.md 2024-02-22 12:29:00 +01:00
docker-compose.yml Update docker-compose.yml 2024-02-22 12:23:05 +01:00
init-database.sh Create init-database.sh 2024-02-22 12:23:25 +01:00

README.md

References

Notes

You have to pre-supply a database init script to properly setup the postgresql database beforehand.

Please follow these steps to do so:

# create new directory for database
mkdir -p /mnt/docker-volumes/n8n

# move the init file from this repo to the new location
mv init-database.sh /mnt/docker-volumes/n8n/.

# optional; adjust permissions
sudo chmod -R 777 /mnt/docker-volumes/n8n/

Afterwards, you can proceed spawning up the docker compose stack with:

docker compose up

[!WARNING] Upon starting the stack you may see n8n errors regarding permissions:

[EACCES] Error Plugin: n8n: EACCES: permission denied, open '/home/node/.n8n/config'

You can fix those my running:

sudo chmod -R 777 /mnt/docker-volumes/n8n/database

and restarting the stack:

docker compose up --force-recreate