aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/docker
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-08-11 10:43:31 +0200
committerChocobozzz <me@florianbigard.com>2022-08-11 10:43:31 +0200
commitb1053a30f6979ad097965efd1fa661ed37209f78 (patch)
tree537e7377b0adbc35943ca10877bb0ee29578707e /support/docker
parentf4057afd20c2767c7e434a8b53d32cf57ed56a05 (diff)
downloadPeerTube-b1053a30f6979ad097965efd1fa661ed37209f78.tar.gz
PeerTube-b1053a30f6979ad097965efd1fa661ed37209f78.tar.zst
PeerTube-b1053a30f6979ad097965efd1fa661ed37209f78.zip
Add ability to use docker on local
Diffstat (limited to 'support/docker')
-rw-r--r--support/docker/production/.env7
-rw-r--r--support/docker/production/docker-compose.yml8
2 files changed, 8 insertions, 7 deletions
diff --git a/support/docker/production/.env b/support/docker/production/.env
index 70743e0ec..4e7b21ab6 100644
--- a/support/docker/production/.env
+++ b/support/docker/production/.env
@@ -12,10 +12,11 @@ PEERTUBE_DB_SSL=false
12# Default to Postgres service name "postgres" in docker-compose.yml 12# Default to Postgres service name "postgres" in docker-compose.yml
13PEERTUBE_DB_HOSTNAME=postgres 13PEERTUBE_DB_HOSTNAME=postgres
14 14
15# Server configuration 15# PeerTube server configuration
16# If you test PeerTube in local: use "peertube.localhost" and add this domain to your host file resolving on 127.0.0.1
16PEERTUBE_WEBSERVER_HOSTNAME=<MY DOMAIN> 17PEERTUBE_WEBSERVER_HOSTNAME=<MY DOMAIN>
17# If you do not use https and a reverse-proxy in docker-compose.yml 18# If you just want to test PeerTube on local
18#PEERTUBE_WEBSERVER_PORT=80 19#PEERTUBE_WEBSERVER_PORT=9000
19#PEERTUBE_WEBSERVER_HTTPS=false 20#PEERTUBE_WEBSERVER_HTTPS=false
20# If you need more than one IP as trust_proxy 21# If you need more than one IP as trust_proxy
21# pass them as a comma separated array: 22# pass them as a comma separated array:
diff --git a/support/docker/production/docker-compose.yml b/support/docker/production/docker-compose.yml
index cf90b226f..13f75f222 100644
--- a/support/docker/production/docker-compose.yml
+++ b/support/docker/production/docker-compose.yml
@@ -2,7 +2,7 @@ version: "3.3"
2 2
3services: 3services:
4 4
5 # You can comment this webserver section if you want to use another webserver/proxy 5 # You can comment this webserver section if you want to use another webserver/proxy or test PeerTube in local
6 webserver: 6 webserver:
7 image: chocobozzz/peertube-webserver:latest 7 image: chocobozzz/peertube-webserver:latest
8 # If you don't want to use the official image and build one from sources: 8 # If you don't want to use the official image and build one from sources:
@@ -28,7 +28,7 @@ services:
28 - peertube 28 - peertube
29 restart: "always" 29 restart: "always"
30 30
31 # You can comment this certbot section if you want to use another webserver/proxy 31 # You can comment this certbot section if you want to use another webserver/proxy or test PeerTube in local
32 certbot: 32 certbot:
33 container_name: certbot 33 container_name: certbot
34 image: certbot/certbot 34 image: certbot/certbot
@@ -55,8 +55,8 @@ services:
55 - .env 55 - .env
56 56
57 ports: 57 ports:
58 - "1935:1935" # If you don't want to use the live feature, you can comment this line 58 - "1935:1935" # Comment if you don't want to use the live feature
59 # - "9000:9000" # If you provide your own webserver and reverse-proxy, otherwise not suitable for production 59 # - "9000:9000" # Uncomment if you use another webserver/proxy or test PeerTube in local, otherwise not suitable for production
60 volumes: 60 volumes:
61 - assets:/app/client/dist 61 - assets:/app/client/dist
62 - ./docker-volume/data:/data 62 - ./docker-volume/data:/data