Compare commits

..

1 Commits

Author SHA1 Message Date
renovate-bot 406bfb1381 Add renovate.json
continuous-integration/drone/pr Build is failing
2026-03-10 18:01:51 +00:00
9 changed files with 14 additions and 70 deletions
+2 -2
View File
@@ -35,7 +35,7 @@ SECRET_PEERTUBE_SECRET_VERSION=v1 # length=32
#NGINX_WEBSEED_CDN_URI=https://some-bucket.some-cdn.net
## E-mail settings # <= EDIT ALL THIS
#COMPOSE_FILE="$COMPOSE_FILE:compose.smtp.yml"
#COMPOSE_FILE="compose.yml:compose.smtp.yml"
#PEERTUBE_SMTP_ENABLED=1
#SECRET_SMTP_PASSWORD_VERSION=v1
#PEERTUBE_SMTP_USERNAME=foobar
@@ -46,7 +46,7 @@ SECRET_PEERTUBE_SECRET_VERSION=v1 # length=32
#PEERTUBE_SMTP_DISABLE_STARTTLS=true
## Live stream settings
#COMPOSE_FILE="$COMPOSE_FILE:compose.rtmp.yml"
#COMPOSE_FILE="compose.yml:compose.rtmp.yml"
## Live chat settings
#PEERTUBE_LIVE_CHAT_ENABLED=1
+1 -1
View File
@@ -1,6 +1,6 @@
# shellcheck disable=SC2034,SC2145
export NGINX_CONFIG_VERSION=v9
export NGINX_CONFIG_VERSION=v8
export APP_ENTRYPOINT_VERSION=v7
sub_npm() {
+4 -4
View File
@@ -3,7 +3,7 @@ version: "3.8"
services:
web:
image: nginx:1.29.8
image: nginx:1.29.4
networks:
- proxy
- internal
@@ -40,7 +40,7 @@ services:
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
app:
image: chocobozzz/peertube:v8.2.3-trixie
image: chocobozzz/peertube:v7.3.0-bookworm
environment:
- PEERTUBE_ADMIN_EMAIL
- PEERTUBE_CONTACT_FORM_ENABLED
@@ -79,7 +79,7 @@ services:
- internal
deploy:
labels:
- "coop-cloud.${STACK_NAME}.version=8.3.1+v8.2.3-trixie"
- "coop-cloud.${STACK_NAME}.version=7.2.1+v7.3.0-bookworm"
db:
image: pgautoupgrade/pgautoupgrade:18-alpine
@@ -90,7 +90,7 @@ services:
secrets:
- db_password
volumes:
- postgres-data:/var/lib/postgresql/
- postgres-data:/var/lib/postgresql/data
networks:
- internal
healthcheck:
+1 -3
View File
@@ -179,9 +179,7 @@ http {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
# Prevent too much proxying, which results in high disk write IO
proxy_max_temp_file_size 50M;
proxy_limit_rate 5M;
proxy_pass http://backend;
-1
View File
@@ -1 +0,0 @@
Please update your .env file, specially if you're using SMTP or RTMP.
-23
View File
@@ -1,23 +0,0 @@
Bumping peertube to v8.0.2
* Ensure storage.uploads directory is set in your `production.yaml` (in `/var/lib/docker/volumes/<app>_app-config/_data`)
* Copy over the [`default.yaml`](https://raw.githubusercontent.com/Chocobozzz/PeerTube/refs/tags/v8.0.2/config/default.yaml) in to `/var/lib/docker/volumes/<app>_app-config/_data/`
* Database migrations of this version can take a long time (up to 30 minutes on an instance with many users/federation actors and a slow database disk)
* You need to manually execute a migration script after your upgrade while PeerTube is running and the database migration is complete(`Migrations finished. New migration version schema: 970 in PeerTube startup logs`):
To search the logs:
`abra app logs <app>`
To run the migration:
```
abra app run <app> app bash --user peertube
export ARGS="-e NODE_CONFIG_DIR=/config -e NODE_ENV=production"
export PEERTUBE_DB_PASSWORD=$(cat /run/secrets/db_password)
node dist/scripts/migrations/peertube-8.0.js```
Full release notes:
https://github.com/Chocobozzz/PeerTube/releases/tag/v8.0.0
https://github.com/Chocobozzz/PeerTube/releases/tag/v8.0.1
https://github.com/Chocobozzz/PeerTube/releases/tag/v8.0.2
-28
View File
@@ -1,28 +0,0 @@
Bumping peertube to v8.1.8
* You need to manually execute a migration script after your upgrade while PeerTube is running and the database migration is complete(`Migrations finished. New migration version schema: 1000 in PeerTube startup logs`):
To search the logs:
`abra app logs <app>`
To run the migration, regenerate thumbnails, prune storage:
```
abra app run <app> app bash --user peertube
export ARGS="-e NODE_CONFIG_DIR=/config -e NODE_ENV=production"
export PEERTUBE_DB_PASSWORD=$(cat /run/secrets/db_password)
node dist/scripts/migrations/peertube-8.1.js
npm run regenerate-thumbnails
npm run prune-storage
```
Full release notes:
https://github.com/Chocobozzz/PeerTube/releases/tag/v8.1.0
https://github.com/Chocobozzz/PeerTube/releases/tag/v8.1.8
-8
View File
@@ -1,8 +0,0 @@
Bumping peertube to v8.2.1
* Copy over the [`default.yaml`](https://raw.githubusercontent.com/Chocobozzz/PeerTube/refs/tags/v8.2.1/config/default.yaml) in to `/var/lib/docker/volumes/<app>_app-config/_data/`
Full release notes:
https://github.com/Chocobozzz/PeerTube/releases/tag/v8.2.0
Massive thanks to 3wc for the help!!
+6
View File
@@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
}