Skip to content

Commit e074dac

Browse files
committed
Update files to 8.2
1 parent 93c8b55 commit e074dac

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ COPY config/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
4242
# forward request and error logs to docker log collector
4343
RUN ln -sf /dev/stdout /var/log/nginx/access.log \
4444
&& ln -sf /dev/stderr /var/log/nginx/error.log \
45-
&& ln -sf /dev/stderr /var/log/php8.1-fpm.log
45+
&& ln -sf /dev/stderr /var/log/php8.2-fpm.log
4646

4747
# HTTP
4848
EXPOSE 80/tcp

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This Docker image has several assumptions/prerequisites which need to be fulfil
1717
1. This image is for domains or sub-domains with **/tt-rss/** in the URL. e.g. **http://reader.mydomain.tld**
1818
1. MySQL needs to be installed in a separate Docker container.
1919
1. MySQL needs to be configured and setup **BEFORE** this image is deployed (explained below).
20-
1. If a previous MySQL instance is used and and old TT-RSS instance was using PHP 7.x then a "Data Fix" will need to be applied to the database as this image used PHP 8.1 and generates JSON differently. Failure to "Data Fix" the database could result in duplicate posts appearing in TT-RSS (explained below)
20+
1. If a previous MySQL instance is used and and old TT-RSS instance was using PHP 7.x then a "Data Fix" will need to be applied to the database as this image used PHP 8.2 and generates JSON differently. Failure to "Data Fix" the database could result in duplicate posts appearing in TT-RSS (explained below)
2121

2222
## MySQL Setup
2323

config/php.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
location ~* \.php$ {
33
fastcgi_index index.php;
44
#fastcgi_pass 127.0.0.1:9000;
5-
fastcgi_pass unix:/var/run/php/php8.1-fpm.sock;
5+
fastcgi_pass unix:/var/run/php/php8.2-fpm.sock;
66
include /etc/nginx/fastcgi_params;
77
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
88
fastcgi_param SCRIPT_NAME $fastcgi_script_name;

config/supervisord.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ stderr_logfile=/dev/stderr
1717
stderr_logfile_maxbytes=0
1818

1919
[program:php-fpm]
20-
command=/bin/bash -c "mkdir -p /var/run/php && php-fpm8.1 --nodaemonize --fpm-config /etc/php/8.1/fpm/php-fpm.conf"
20+
command=/bin/bash -c "mkdir -p /var/run/php && php-fpm8.2 --nodaemonize --fpm-config /etc/php/8.2/fpm/php-fpm.conf"
2121
autostart=true
2222
autorestart=true
2323
stdout_logfile=/dev/stdout

0 commit comments

Comments
 (0)