mirror of
https://github.com/n8n-io/n8n.git
synced 2026-08-30 18:01:23 +08:00
c1334647a3
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
25 lines
491 B
YAML
25 lines
491 B
YAML
volumes:
|
|
postgres-data:
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:18-alpine
|
|
restart: unless-stopped
|
|
volumes:
|
|
- postgres-data:/var/lib/postgresql
|
|
environment:
|
|
- POSTGRES_DB=n8n
|
|
- POSTGRES_PASSWORD=password
|
|
|
|
n8n:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
volumes:
|
|
- ..:/workspaces:cached
|
|
command: sleep infinity
|
|
environment:
|
|
DB_POSTGRESDB_HOST: postgres
|
|
DB_TYPE: postgresdb
|
|
DB_POSTGRESDB_PASSWORD: password
|