Skip to content

Instantly share code, notes, and snippets.

@rsimd
Created July 4, 2025 05:09
Show Gist options
  • Select an option

  • Save rsimd/e2554da407015f1dfde387a3592c2951 to your computer and use it in GitHub Desktop.

Select an option

Save rsimd/e2554da407015f1dfde387a3592c2951 to your computer and use it in GitHub Desktop.
services:
n8n:
image: n8nio/n8n:latest # ベースになるコンテナイメージ
container_name: n8n #コンテナ名
ports:
- "5678:5678" # ポートのマッピング contaienr 5678 -> host 5678
restart: unless-stopped # コンテナの再起動ポリシー # unless-stopped: 停止されるまで再起動
environment:
- N8N_ENCRYPTION_KEY=your_encryption_key # n8nの暗号化キー
- GENERIC_TIMEZONE=Asia/Tokyo # タイムゾーンの設定
volumes:
- n8n_data:/home/node/.n8n # ホスト
volumes:
n8n_data: # n8nのデータを保存するボリューム
@rsimd
Copy link
Author

rsimd commented Jul 4, 2025

n8n

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment