aboutsummaryrefslogtreecommitdiffhomepage
path: root/support
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-03-23 11:22:26 +0100
committerChocobozzz <me@florianbigard.com>2018-03-23 11:22:26 +0100
commit95540ed23a2e6ae6d48739f211aa24df57278413 (patch)
treedf45ecb921edc8a00747799912f086d1b911a117 /support
parenta216c6233d46689f73a7c542e6170555b7f287b6 (diff)
downloadPeerTube-95540ed23a2e6ae6d48739f211aa24df57278413.tar.gz
PeerTube-95540ed23a2e6ae6d48739f211aa24df57278413.tar.zst
PeerTube-95540ed23a2e6ae6d48739f211aa24df57278413.zip
Prepare building docker files on docker hub
Diffstat (limited to 'support')
-rw-r--r--support/docker/production/Dockerfile.alpine6
-rw-r--r--support/docker/production/Dockerfile.stretch6
-rw-r--r--support/docker/production/config/production.yaml50
-rw-r--r--support/docker/production/docker-compose.yml6
4 files changed, 10 insertions, 58 deletions
diff --git a/support/docker/production/Dockerfile.alpine b/support/docker/production/Dockerfile.alpine
index 939b2d23b..8ce0bb98b 100644
--- a/support/docker/production/Dockerfile.alpine
+++ b/support/docker/production/Dockerfile.alpine
@@ -4,10 +4,9 @@ FROM node:8-alpine
4RUN apk add --no-cache ffmpeg openssl bash make g++ git \ 4RUN apk add --no-cache ffmpeg openssl bash make g++ git \
5 && apk add --no-cache --repository https://dl-3.alpinelinux.org/alpine/edge/testing/ vips-dev fftw-dev 5 && apk add --no-cache --repository https://dl-3.alpinelinux.org/alpine/edge/testing/ vips-dev fftw-dev
6 6
7# Install the application 7RUN git clone -b master https://github.com/Chocobozzz/PeerTube /app
8WORKDIR /app
9 8
10COPY . ./ 9WORKDIR /app
11RUN bash -c 'yarn install --pure-lockfile && npm run build' 10RUN bash -c 'yarn install --pure-lockfile && npm run build'
12 11
13# Configure the application 12# Configure the application
@@ -15,6 +14,7 @@ RUN addgroup -g 991 peertube \
15 && adduser -D -u 991 -G peertube -h /data peertube 14 && adduser -D -u 991 -G peertube -h /data peertube
16USER peertube 15USER peertube
17 16
17RUN cp /app/config/default.yaml /app/support/docker/production/config/default.yaml
18ENV NODE_ENV production 18ENV NODE_ENV production
19ENV NODE_CONFIG_DIR /app/support/docker/production/config/ 19ENV NODE_CONFIG_DIR /app/support/docker/production/config/
20 20
diff --git a/support/docker/production/Dockerfile.stretch b/support/docker/production/Dockerfile.stretch
index c739247a6..c616194e6 100644
--- a/support/docker/production/Dockerfile.stretch
+++ b/support/docker/production/Dockerfile.stretch
@@ -5,10 +5,9 @@ RUN apt-get update \
5 && apt-get -y install ffmpeg \ 5 && apt-get -y install ffmpeg \
6 && rm /var/lib/apt/lists/* -fR 6 && rm /var/lib/apt/lists/* -fR
7 7
8# Install the application 8RUN git clone -b master https://github.com/Chocobozzz/PeerTube /app
9WORKDIR /app
10 9
11COPY . ./ 10WORKDIR /app
12RUN yarn install --pure-lockfile && npm run build 11RUN yarn install --pure-lockfile && npm run build
13 12
14# Configure the application 13# Configure the application
@@ -16,6 +15,7 @@ RUN groupadd -g 991 peertube \
16 && useradd -u 991 -g peertube -d /data -m peertube 15 && useradd -u 991 -g peertube -d /data -m peertube
17USER peertube 16USER peertube
18 17
18RUN cp /app/config/default.yaml /app/support/docker/production/config/default.yaml
19ENV NODE_ENV production 19ENV NODE_ENV production
20ENV NODE_CONFIG_DIR /app/support/docker/production/config 20ENV NODE_CONFIG_DIR /app/support/docker/production/config
21 21
diff --git a/support/docker/production/config/production.yaml b/support/docker/production/config/production.yaml
index fdcbeb5a0..41272ba26 100644
--- a/support/docker/production/config/production.yaml
+++ b/support/docker/production/config/production.yaml
@@ -21,21 +21,9 @@ redis:
21 port: 6379 21 port: 6379
22 auth: null 22 auth: null
23 23
24# SMTP server to send emails
25smtp:
26 hostname: null
27 port: 465
28 username: null
29 password: null
30 tls: true
31 disable_starttls: false
32 ca_file: null # Used for self signed certificates
33 from_address: 'admin@example.com'
34
35# From the project root directory 24# From the project root directory
36storage: 25storage:
37 avatars: '../data/avatars/' 26 avatars: '../data/avatars/'
38 certs: '../data/certs/'
39 videos: '../data/videos/' 27 videos: '../data/videos/'
40 logs: '../data/logs/' 28 logs: '../data/logs/'
41 previews: '../data/previews/' 29 previews: '../data/previews/'
@@ -46,41 +34,5 @@ storage:
46log: 34log:
47 level: 'info' # debug/info/warning/error 35 level: 'info' # debug/info/warning/error
48 36
49cache:
50 previews:
51 size: 100 # Max number of previews you want to cache
52
53admin: 37admin:
54 email: undefined 38 email: null
55
56signup:
57 enabled: false
58 limit: -1
59
60user:
61 # Default value of maximum video BYTES the user can upload (does not take into account transcoded files).
62 # -1 == unlimited
63 video_quota: -1
64
65# If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag
66# Uses a lot of CPU!
67transcoding:
68 enabled: false
69 threads: 2
70 resolutions: # Only created if the original video has a higher resolution
71 240p: true
72 360p: true
73 480p: true
74 720p: true
75 1080p: true
76
77# Instance settings
78instance:
79 name: 'PeerTube'
80 short_description: 'PeerTube, a federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.'
81 description: '' # Support markdown
82 terms: '' # Support markdown
83 default_client_route: '/videos/trending'
84 customizations:
85 javascript: '' # Directly your JavaScript code (without <script> tags). Will be eval at runtime
86 css: '' # Directly your CSS code (without <style> tags). Will be injected at runtime
diff --git a/support/docker/production/docker-compose.yml b/support/docker/production/docker-compose.yml
index 9c6b6f6e3..d45b0b51a 100644
--- a/support/docker/production/docker-compose.yml
+++ b/support/docker/production/docker-compose.yml
@@ -4,8 +4,8 @@ services:
4 4
5 peertube: 5 peertube:
6 build: 6 build:
7 context: ../../../ 7 context: .
8 dockerfile: ./support/docker/production/Dockerfile.stretch 8 dockerfile: ./Dockerfile.stretch
9 image: peertube:stretch 9 image: peertube:stretch
10 environment: 10 environment:
11 PEERTUBE_HOSTNAME: my.domain.tld 11 PEERTUBE_HOSTNAME: my.domain.tld
@@ -18,7 +18,7 @@ services:
18 PEERTUBE_SIGNUP_ENABLED: "true" 18 PEERTUBE_SIGNUP_ENABLED: "true"
19 PEERTUBE_TRANSCODING_ENABLED: "true" 19 PEERTUBE_TRANSCODING_ENABLED: "true"
20 PEERTUBE_REDIS_HOSTNAME: redis 20 PEERTUBE_REDIS_HOSTNAME: redis
21 PEERTUBE_SMTP_HOSTNAME: mail.domain.tld 21 PEERTUBE_SMTP_HOSTNAME: null
22 PEERTUBE_SMTP_PORT: 25 22 PEERTUBE_SMTP_PORT: 25
23 PEERTUBE_SMTP_FROM: noreply@peertube.domain.tld 23 PEERTUBE_SMTP_FROM: noreply@peertube.domain.tld
24 PEERTUBE_SMTP_TLS: "true" 24 PEERTUBE_SMTP_TLS: "true"