diff --git a/docker/images/n8n/README.md b/docker/images/n8n/README.md index 3250fd4e17..8ab93f0e0f 100644 --- a/docker/images/n8n/README.md +++ b/docker/images/n8n/README.md @@ -19,6 +19,7 @@ so also used with internal tools. - [Securing n8n](#securing-n8n) - [Persist data](#persist-data) - [Passing Sensitive Data via File](#passing-sensitive-data-via-file) +- [Example Setup with Lets Encrypt](#example-setup-with-lets-encrypt) - [What does n8n mean and how do you pronounce it](#what-does-n8n-mean-and-how-do-you-pronounce-it) - [Support](#support) - [Upgrading](#upgrading) @@ -193,6 +194,12 @@ The following environment variables support file input: - N8N_BASIC_AUTH_USER_FILE +## Example Setup with Lets Encrypt + +A basic step by step example setup of n8n with docker-compose and Lets Encrypt is available on the +[Server Setup](https://docs.n8n.io/#/server-setup) page. + + ## Setting Timezone To define the timezone n8n should use, the environment variable `GENERIC_TIMEZONE` can diff --git a/docs/docker.md b/docs/docker.md index c092104f51..5b400820d5 100644 --- a/docs/docker.md +++ b/docs/docker.md @@ -2,3 +2,6 @@ Detailed information about how to run n8n in Docker can be found in the README of the [Docker Image](https://github.com/n8n-io/n8n/blob/master/docker/images/n8n/README.md). + +A basic step by step example setup of n8n with docker-compose and Lets Encrypt is available on the +[Server Setup](server-setup.md) page.