mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
60 lines
1.5 KiB
YAML
60 lines
1.5 KiB
YAML
services:
|
|
mockapi:
|
|
image: wiremock/wiremock:3.9.1
|
|
ports:
|
|
- '8088:8080'
|
|
volumes:
|
|
- ${MOCK_API_DATA_PATH}/mappings:/home/wiremock/mappings
|
|
|
|
postgres:
|
|
image: postgres:16
|
|
restart: always
|
|
user: root:root
|
|
environment:
|
|
- POSTGRES_DB=n8n
|
|
- POSTGRES_USER=postgres
|
|
- POSTGRES_PASSWORD=password
|
|
- PGDATA=/var/lib/postgresql/data/pgdata
|
|
volumes:
|
|
- ${RUN_DIR}/postgres:/var/lib/postgresql/data
|
|
healthcheck:
|
|
test: ['CMD-SHELL', 'pg_isready -U postgres']
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 5
|
|
|
|
n8n:
|
|
image: ghcr.io/n8n-io/n8n:${N8N_VERSION:-latest}
|
|
user: root:root
|
|
environment:
|
|
- N8N_DIAGNOSTICS_ENABLED=false
|
|
- N8N_USER_FOLDER=/n8n
|
|
- DB_TYPE=postgresdb
|
|
- DB_POSTGRESDB_HOST=postgres
|
|
- DB_POSTGRESDB_PASSWORD=password
|
|
ports:
|
|
- 5678:5678
|
|
volumes:
|
|
- ${RUN_DIR}/n8n:/n8n
|
|
depends_on:
|
|
postgres:
|
|
condition: service_healthy
|
|
mockapi:
|
|
condition: service_started
|
|
healthcheck:
|
|
test: ['CMD-SHELL', 'wget --spider -q http://n8n:5678/healthz || exit 1']
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 10
|
|
|
|
benchmark:
|
|
image: ghcr.io/n8n-io/n8n-benchmark:${N8N_BENCHMARK_VERSION:-latest}
|
|
depends_on:
|
|
n8n:
|
|
condition: service_healthy
|
|
environment:
|
|
- N8N_BASE_URL=http://n8n:5678
|
|
- K6_API_TOKEN=${K6_API_TOKEN}
|
|
- BENCHMARK_RESULT_WEBHOOK_URL=${BENCHMARK_RESULT_WEBHOOK_URL}
|
|
- BENCHMARK_RESULT_WEBHOOK_AUTH_HEADER=${BENCHMARK_RESULT_WEBHOOK_AUTH_HEADER}
|