aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/docker
Commit message (Collapse)AuthorAgeFilesLines
* Add TMP persistent directoryChocobozzz2023-05-091-0/+1
| | | | To store files that must be preserved between peertube restarts
* feat(docker): make database name configurable (#5734)Joël Galeran2023-04-072-4/+11
| | | | | | | | | | * feat(docker): make database name configurable WIP Related https://github.com/Chocobozzz/PeerTube/issues/5708 * Update .env * PEERTUBE_DB_NAME & add comments
* Add missing docker env for object storage configChocobozzz2023-03-071-0/+9
|
* Fill documentation with required secret confChocobozzz2022-10-102-0/+6
|
* server: serve files from storage/well-known (#5214)kontrollanten2022-10-041-0/+1
| | | | | | | | | | | | | | | | | | | | | | | * server: serve files from storage/well-known closes #5206 * well-known: add tests * test: try to skip new tests * test: another try * fix(config/prod): well_known path * test: fix broken tests * Update misc-endpoints.ts * Use getDirectoryPath for tests * Fix tests Co-authored-by: Chocobozzz <me@florianbigard.com>
* Add ability to use docker on localChocobozzz2022-08-112-7/+8
|
* Fix docker user entrypointChocobozzz2022-06-211-2/+2
|
* Prefer using node instead of npm in dockerfileChocobozzz2022-05-041-2/+2
| | | | We get bad error output with npm
* Use node 16 in peertube docker imageChocobozzz2022-05-021-1/+1
|
* Make object storage ACL configurableDoug Luce2022-03-161-0/+1
| | | | | | | | Override this value to allow uploads to non-public S3 buckets. Otherwise "AccessDenied: Access Denied" errors will end up in the log. Fixes #4850
* Install git in docker imageChocobozzz2022-03-071-1/+1
| | | | Can be needed to install plugins
* Reuse latest dockerfile fixesChocobozzz2022-03-041-2/+4
|
* Remove unnecessary NPM_RUN_BUILD_OPTS docker argChocobozzz2022-01-061-6/+1
|
* Remove angular cache in docker buildChocobozzz2022-01-031-1/+1
|
* Try to fix docker buildChocobozzz2022-01-031-2/+2
|
* Increase docker ARM build timeoutChocobozzz2021-12-281-2/+2
|
* Deprecate node 12Chocobozzz2021-12-241-1/+1
|
* Increase yarn timeoutChocobozzz2021-12-061-2/+2
| | | | It can be slow when building docker using qemu
* Add missing docker credentials envChocobozzz2021-12-021-0/+4
|
* Migrate docker image to bullseyeChocobozzz2021-11-162-3/+3
|
* Trigger rebuild of Gitpod's image for PeerTubeFlorian CUNY2021-11-091-1/+1
| | | Gitpod's docker image for PeerTube hasn't been rebuilt for some time, and started to have compatibility issues between dependencies and the node engine. Triggering this rebuild should force Gitpod to rebuild the image with node v16.13.0 instead of node v12.20.0.
* Added 144p encoding (#4492)Florian CUNY2021-11-051-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Added 144p encoding Implements https://github.com/Chocobozzz/PeerTube/issues/4428 * Fixed typo in core-utils * Increased BitPerPixel for 144p * Disabled 144p by default in test.yaml * Another try at fixing tests * Fixed test in video-transcoder (api-3) * Fixed test in video-imports (api-4) * Fixed test in live-constraints (api-2) * Tried to fix tests in api-3 again * Revert "Tried to fix tests in api-3 again" This reverts commit 266e1143fa37f333d149c2c2791c7bd33621ac14. * Fixed test in config.ts (api-2) * Try to fix test in video-hls.ts (api-3) * Fixed test in video-transcoder.ts (api-3) * Fix tests Co-authored-by: Chocobozzz <me@florianbigard.com>
* Rewrite youtube-dl importChocobozzz2021-10-221-0/+1
| | | | | | | | Use python3 binary Allows to use a custom youtube-dl release URL Allows to use yt-dlp (youtube-dl fork) Remove proxy config from configuration to use HTTP_PROXY and HTTPS_PROXY env variables
* Breaking: fix inconsistencies in configurationChocobozzz2021-10-201-2/+2
|
* Fix admin edition disabling featureChocobozzz2021-10-141-3/+3
|
* extend client-overrides with default images (#4392)kontrollanten2021-10-121-1/+7
| | | | | | | | | | | | | | * extend client-overrides with default images Add: * default-playlist.png * default-avatar-account.png * default-avatar-videochannel.png solves #4108 * Rename to default-avatar-video-channel.png Co-authored-by: Chocobozzz <me@florianbigard.com>
* Allow configuration to be static/readonly (#4315)Jelle Besseling2021-10-123-9/+10
| | | | | | | | | | | * Allow configuration to be static/readonly * Make all components disableable * Improve disabled component styling * Rename edits allowed field in configuration * Fix CI
* Add support for saving video files to object storage (#4290)Jelle Besseling2021-08-171-0/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add support for saving video files to object storage * Add support for custom url generation on s3 stored files Uses two config keys to support url generation that doesn't directly go to (compatible s3). Can be used to generate urls to any cache server or CDN. * Upload files to s3 concurrently and delete originals afterwards * Only publish after move to object storage is complete * Use base url instead of url template * Fix mistyped config field * Add rudenmentary way to download before transcode * Implement Chocobozzz suggestions https://github.com/Chocobozzz/PeerTube/pull/4290#issuecomment-891670478 The remarks in question: Try to use objectStorage prefix instead of s3 prefix for your function/variables/config names Prefer to use a tree for the config: s3.streaming_playlists_bucket -> object_storage.streaming_playlists.bucket Use uppercase for config: S3.STREAMING_PLAYLISTS_BUCKETINFO.bucket -> OBJECT_STORAGE.STREAMING_PLAYLISTS.BUCKET (maybe BUCKET_NAME instead of BUCKET) I suggest to rename moveJobsRunning to pendingMovingJobs (or better, create a dedicated videoJobInfo table with a pendingMove & videoId columns so we could also use this table to track pending transcoding jobs) https://github.com/Chocobozzz/PeerTube/pull/4290/files#diff-3e26d41ca4bda1de8e1747af70ca2af642abcc1e9e0bfb94239ff2165acfbde5R19 uses a string instead of an integer I think we should store the origin object storage URL in fileUrl, without base_url injection. Instead, inject the base_url at "runtime" so admins can easily change this configuration without running a script to update DB URLs * Import correct function * Support multipart upload * Remove import of node 15.0 module stream/promises * Extend maximum upload job length Using the same value as for redundancy downloading seems logical * Use dynamic part size for really large uploads Also adds very small part size for local testing * Fix decreasePendingMove query * Resolve various PR comments * Move to object storage after optimize * Make upload size configurable and increase default * Prune webtorrent files that are stored in object storage * Move files after transcoding jobs * Fix federation * Add video path manager * Support move to external storage job in client * Fix live object storage tests Co-authored-by: Chocobozzz <me@florianbigard.com>
* (doc) add note in config that tmp is also used while processingRigel Kent2021-06-081-1/+1
|
* Allow setting log level using PEERTUBE_LOG_LEVEL envvarJohan Fleury2021-06-021-0/+1
|
* Fix broadcast message log levelChocobozzz2021-05-251-1/+1
|
* Allow SSL database parameter (#4114)Stakovicz2021-05-252-0/+4
| | | | | | | | | | | | | | | * Allow SSL database parameter Allow SSL database parameter via environment variable * Allow SSL database parameter Allow SSL database parameter via environment variable * Update support/docker/production/config/custom-environment-variables.yaml Co-authored-by: Chocobozzz <chocobozzz@cpy.re> Co-authored-by: Chocobozzz <chocobozzz@cpy.re>
* Fix logger warning levelChocobozzz2021-05-141-1/+1
|
* Add curl as dependency to allow for healthchecksdecentral1se2021-05-071-1/+1
| | | | Closes https://github.com/Chocobozzz/PeerTube/issues/4045.
* [support/docker] expose webtorrent setting in os variable settingsArthur Lutz2021-03-291-0/+4
|
* Add build-essentials if architecture not supportedChocobozzz2021-03-051-1/+1
| | | | bcrypt needs to be built on arm64 for example
* Remove traefik doc: we don't use it anymoreChocobozzz2021-02-121-1/+1
|
* Support NodeJS 14 and 15, deprecate Node 10Chocobozzz2021-02-041-1/+1
|
* feat: allow administrator to disable logging of ping requestsJohan Fleury2021-01-131-0/+5
|
* add support for 1440p (Quad HD/QHD/WQHD) videosRigel Kent2021-01-131-0/+3
|
* Remove docker images I can't maintainChocobozzz2021-01-137-153/+0
|
* Support live port in docker composeChocobozzz2021-01-071-3/+4
|
* Fix docker webserver buildChocobozzz2021-01-071-1/+1
|
* Fix docker nginx container if peertube restartsChocobozzz2021-01-051-0/+5
|
* Remove traefik docker supportChocobozzz2020-12-306-119/+35
|
* Fix PostreSQL initialization for GitpodJan Keromnes2020-12-061-4/+0
|
* Trigger a Gitpod dev image rebuild (in order to get upstream's Node.js 12 ↵Jan Keromnes2020-12-021-0/+4
| | | | | | | upgrade) (#3388) * Trigger a Gitpod dev image rebuild (in order to get upstream's Node.js 12 upgrade) * Update Dockerfile
* export rtmp port in dockerfilesRigel Kent2020-11-213-4/+7
| | | | follows #3341
* consistent documentation and configuration in compose fileRigel Kent2020-11-112-6/+7
|
* move traefik to its own override fileRigel Kent2020-11-113-32/+37
|