Rename backup to demo-data to avoid confusion as to the purpose (#58)

This commit is contained in:
jeanpaul
2025-04-24 16:43:32 +02:00
committed by GitHub
parent a3baf1e7ac
commit de62957851
4 changed files with 3 additions and 3 deletions

View File

@@ -71,9 +71,9 @@ services:
entrypoint: /bin/sh
command:
- "-c"
- "n8n import:credentials --separate --input=/backup/credentials && n8n import:workflow --separate --input=/backup/workflows"
- "n8n import:credentials --separate --input=/demo-data/credentials && n8n import:workflow --separate --input=/demo-data/workflows"
volumes:
- ./n8n/backup:/backup
- ./n8n/demo-data:/demo-data
depends_on:
postgres:
condition: service_healthy
@@ -87,7 +87,7 @@ services:
- 5678:5678
volumes:
- n8n_storage:/home/node/.n8n
- ./n8n/backup:/backup
- ./n8n/demo-data:/demo-data
- ./shared:/data/shared
depends_on:
postgres: