Compose-Examples/examples/n8n
2024-09-26 22:41:56 +02:00
..
.env Update .env 2024-02-22 12:22:37 +01:00
docker-compose.yml fix: network name 2024-09-26 22:31:36 +02:00
init-database.sh chore: fix init psql 2024-09-26 20:05:59 +02:00
README.md chore: adjust readme 2024-09-26 22:41:56 +02:00

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/storage

# 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 -d