Last active
September 3, 2025 21:14
-
-
Save CJavierSaldana/d784d0985307776ac1885f619069fdd0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "3.9" | |
| services: | |
| n8n: | |
| image: n8nio/n8n:latest | |
| ports: | |
| - "5678:5678" | |
| environment: | |
| - TZ=UTC | |
| - N8N_SECURE_COOKIE=false | |
| - N8N_HOST=${HOSTNAME}-5678.direct.labs.play-with-docker.com | |
| - N8N_PORT=5678 | |
| - N8N_PROTOCOL=http | |
| - WEBHOOK_URL=http://${HOSTNAME}-5678.direct.labs.play-with-docker.com/ | |
| - N8N_ENDPOINT_REST=rest | |
| - N8N_ENDPOINT_WEBHOOK=webhook | |
| - N8N_ENDPOINT_WEBHOOK_TEST=webhook-test | |
| - N8N_ENDPOINT_WEBHOOK_WAIT=webhook-waiting | |
| volumes: | |
| - n8n_data:/home/node/.n8n | |
| volumes: | |
| n8n_data: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment