I deployed n8n via docker compose; while I can create, execute, and delete workflows, renaming them is not possible. See the revised configuration below. What setting might be preventing name changes?
version: '3.8'
services:
workflow_service:
image: n8nio/n8n:stable
ports:
- "8080:5678"
environment:
- ENC_SECRET=xyz987
- COOKIE_SAFE=false
- AUTH_ENABLED=true
- AUTH_USER=admin
- AUTH_PASS=pass123
- PROTOCOL=https
- HOOK_URL=https://example
- DATABASE=postgres
- PG_DB=workflowdb
- PG_HOST=db_service
- PG_PORT=5432
- PG_USER=admin
- PG_PASSWORD=pass123
volumes:
- service_data:/home/node/.n8n
depends_on:
- db_service
db_service:
image: postgres:15
environment:
- POSTGRES_DB=workflowdb
- POSTGRES_USER=admin
- POSTGRES_PASSWORD=pass123
volumes:
- db_data:/var/lib/postgresql/data
volumes:
service_data:
db_data: