Update n8n command in docker-compose.yml to simplify syntax

- Modified the command for the n8n service in the docker-compose.yml file to use a simplified shell invocation, enhancing readability while maintaining functionality.
This commit is contained in:
Yury Kossakovsky
2025-05-13 12:48:53 -06:00
parent c125625679
commit e28a4980fb

View File

@@ -15,7 +15,7 @@ volumes:
x-n8n: &service-n8n
image: n8nio/n8n:latest
command: /bin/sh -c "npm install cheerio && n8n"
command: sh -c "npm install cheerio && n8n"
environment: &service-n8n-env
DB_TYPE: postgresdb
DB_POSTGRESDB_HOST: postgres