38 lines
849 B
YAML
38 lines
849 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:__POSTGRES_TAG__
|
|
container_name: n8n-postgres
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_DB: n8n
|
|
POSTGRES_USER: n8n
|
|
POSTGRES_PASSWORD: n8n
|
|
volumes:
|
|
- n8n-postgres:/var/lib/postgresql/data
|
|
n8n:
|
|
image: n8nio/n8n:__N8N_TAG__
|
|
container_name: n8n-app
|
|
restart: unless-stopped
|
|
depends_on:
|
|
- postgres
|
|
ports:
|
|
- "5678:5678"
|
|
environment:
|
|
DB_TYPE: postgresdb
|
|
DB_POSTGRESDB_HOST: postgres
|
|
DB_POSTGRESDB_PORT: 5432
|
|
DB_POSTGRESDB_DATABASE: n8n
|
|
DB_POSTGRESDB_USER: n8n
|
|
DB_POSTGRESDB_PASSWORD: n8n
|
|
N8N_BASIC_AUTH_ACTIVE: "true"
|
|
N8N_BASIC_AUTH_USER: admin
|
|
N8N_BASIC_AUTH_PASSWORD: changeme
|
|
volumes:
|
|
- n8n-data:/home/node/.n8n
|
|
|
|
volumes:
|
|
n8n-postgres:
|
|
n8n-data:
|