20 lines
416 B
YAML
20 lines
416 B
YAML
services:
|
|
n8n:
|
|
image: docker.n8n.io/n8nio/n8n
|
|
container_name: ${N8N}
|
|
extends:
|
|
file: ${SDK}/compose.yaml
|
|
service: service
|
|
env_file:
|
|
- ./n8n.env
|
|
restart: always
|
|
depends_on:
|
|
- ${PROXY}
|
|
ports:
|
|
- ${N8N_PORT}:${N8N_PORT}
|
|
environment:
|
|
- N8N_PORT=${N8N_PORT}
|
|
- N8N_PROTOCOL=${N8N_PROTOCOL}
|
|
- NODE_ENV=production
|
|
networks:
|
|
- ${PROXY} |