aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/docker
diff options
context:
space:
mode:
authorkimsible <kimsible@users.noreply.github.com>2020-03-10 15:14:19 +0100
committerChocobozzz <chocobozzz@cpy.re>2020-03-11 15:02:13 +0100
commitcd7ec86f5c621f3ad01753e81fc67358db6e7df6 (patch)
tree830fad79afd3774d6b11407c9987dc37433b1525 /support/docker
parent310e95d857838a139dcaf683948ae772b040d078 (diff)
downloadPeerTube-cd7ec86f5c621f3ad01753e81fc67358db6e7df6.tar.gz
PeerTube-cd7ec86f5c621f3ad01753e81fc67358db6e7df6.tar.zst
PeerTube-cd7ec86f5c621f3ad01753e81fc67358db6e7df6.zip
feat: add dkim to docker-compose
Diffstat (limited to 'support/docker')
-rw-r--r--support/docker/production/.env3
-rw-r--r--support/docker/production/docker-compose.yml2
2 files changed, 5 insertions, 0 deletions
diff --git a/support/docker/production/.env b/support/docker/production/.env
index 0321b04ae..4743b68db 100644
--- a/support/docker/production/.env
+++ b/support/docker/production/.env
@@ -20,6 +20,9 @@ PEERTUBE_SMTP_TLS=false
20PEERTUBE_SMTP_DISABLE_STARTTLS=false 20PEERTUBE_SMTP_DISABLE_STARTTLS=false
21PEERTUBE_ADMIN_EMAIL=<MY EMAIL ADDRESS> 21PEERTUBE_ADMIN_EMAIL=<MY EMAIL ADDRESS>
22POSTFIX_myhostname=<MY DOMAIN> 22POSTFIX_myhostname=<MY DOMAIN>
23# If you need to generate a list of sub/DOMAIN keys
24# pass them as a whitespace separated string <DOMAIN>=<selector>
25OPENDKIM_DOMAINS=<MY DOMAIN>=peertube
23TRAEFIK_ACME_EMAIL=<MY EMAIL ADDRESS> 26TRAEFIK_ACME_EMAIL=<MY EMAIL ADDRESS>
24# If you need to obtain ACME certificates for more than one DOMAIN 27# If you need to obtain ACME certificates for more than one DOMAIN
25# pass them as a comma separated string 28# pass them as a comma separated string
diff --git a/support/docker/production/docker-compose.yml b/support/docker/production/docker-compose.yml
index 72b08b855..e937c8b9c 100644
--- a/support/docker/production/docker-compose.yml
+++ b/support/docker/production/docker-compose.yml
@@ -70,6 +70,8 @@ services:
70 image: mwader/postfix-relay 70 image: mwader/postfix-relay
71 env_file: 71 env_file:
72 - .env 72 - .env
73 volumes:
74 - ./docker-volume/opendkim/keys:/etc/opendkim/keys
73 labels: 75 labels:
74 traefik.enable: "false" 76 traefik.enable: "false"
75 restart: "always" 77 restart: "always"