I have deployed n8n using Docker Compose, and everything appears to function correctly. I can create, execute, and delete workflows, but I’m experiencing an unusual issue where I’m unable to change the names of my workflows.
I’ve looked through the environment variables in my configuration but haven’t found any option that seems to relate to this issue. I’m curious if there’s a permissions problem or if there’s a mistake in my setup.
Here’s my Docker Compose setup:
version: '3.1'
services:
automation:
image: n8nio/n8n:latest
ports:
- "8080:5678"
environment:
- N8N_ENCRYPTION_KEY=myencryptionkey123
- N8N_SECURE_COOKIE=false
- N8N_BASIC_AUTH_ACTIVE=true
- N8N_BASIC_AUTH_USER=admin
- N8N_BASIC_AUTH_PASSWORD=mypassword
- N8N_PROTOCOL=https
- WEBHOOK_URL=https://mywebsite.com
- DB_TYPE=postgresdb
- DB_POSTGRESDB_DATABASE=n8n_db
- DB_POSTGRESDB_HOST=database
- DB_POSTGRESDB_PORT=5432
- DB_POSTGRESDB_USER=admin
- DB_POSTGRESDB_SCHEMA=public
- DB_POSTGRESDB_PASSWORD=dbpassword
volumes:
- automation_data:/home/node/.n8n
depends_on:
- database
database:
image: postgres:16.2
environment:
- POSTGRES_DB=n8n_db
- POSTGRES_USER=admin
- POSTGRES_PASSWORD=dbpassword
volumes:
- db_storage:/var/lib/postgresql/data
volumes:
automation_data:
db_storage:
Does anyone have any insight into what might be leading to this problem? All other features seem to work well except for renaming workflows.