Skip to content

Commit 7eef010

Browse files
authored
feat: mw 1.39.10, php8.3, alpine 3.20, sentry integration update (#9)
* feat: Update to latest MW with PHP/Alpine * feat: new sentry [no cache]
1 parent ccc189e commit 7eef010

9 files changed

+12
-12
lines changed

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
ARG MEDIAWIKI_VERSION=1.39.7
2-
ARG ALPINE_VERSION=3.19
3-
ARG PHP_VERSION=81
1+
ARG MEDIAWIKI_VERSION=1.39.10
2+
ARG ALPINE_VERSION=3.20
3+
ARG PHP_VERSION=83
44

55
# Download mediawiki
66
FROM alpine:$ALPINE_VERSION as builder

config/extension-list.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,9 @@
104104
"branch": "master"
105105
},
106106
"Sentry": {
107-
"@comment": "Extension distributor has issue with Sentry Extension vendor. Download from wikimedia mirror and compose-merge.",
107+
"@comment": "Extension distributor has issue with Sentry Extension vendor. Download own version and compose-merge.",
108108
"type": "github",
109-
"repo": "wikimedia/mediawiki-extensions-Sentry",
109+
"repo": "ShinyColorsWiki/mediawiki-extensions-Sentry",
110110
"branch": "master"
111111
},
112112
"TabberNeue": {

cron/generate-backup

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# PHP Version
4-
_phpv=81
4+
_phpv=83
55

66
# TODO: Why not move this to other dockers?
77

cron/generate-dumps

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# --------
66

77
# PHP Version
8-
_phpv=81
8+
_phpv=83
99

1010
datestamp=`date +'%Y-%m-%d'`
1111
php="sudo -u nginx -g www-data php$_phpv"

cron/generate-sitemap

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
# PHP Version
4-
_phpv=81
4+
_phpv=83
55

66
cd /srv/wiki
77

cron/run-jobs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
# PHP Version
4-
_phpv=81
4+
_phpv=83
55

66
cd /srv/wiki/w
77

cron/run-transcode-jobs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
# PHP Version
4-
_phpv=81
4+
_phpv=83
55

66
cd /srv/wiki/w
77

cron/update-sfs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

33
# PHP Version
4-
_phpv=81
4+
_phpv=83
55

66
sudo -u nginx -g www-data php$_phpv /srv/wiki/w/extensions/StopForumSpam/maintenance/updateDenyList.php

run

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -euo pipefail
44
echo "Starting wiki..."
55

66
# PHP Version
7-
_phpv=81
7+
_phpv=83
88

99
# Wait until other services are fully started.
1010
seconds=10

0 commit comments

Comments
 (0)