diff --git a/Dockerfile b/Dockerfile index 9fb2faf..1dfa3bd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ FROM tutum/apache-php:latest MAINTAINER Adrian Malacoda -ENV MW_VERSION REL1_26 +ENV MW_VERSION REL1_27 WORKDIR / diff --git a/README.md b/README.md index fc6fb4c..d0829d6 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Mediawiki-Apache ================ -This is a Docker image running Apache serving Mediawiki 1.26. It does not contain any databases; those should be run in a seperate container. +This is a Docker image running Apache serving Mediawiki 1.27. It does not contain any databases; those should be run in a seperate container. First, deploy a database container, [like this one by Tutum](https://registry.hub.docker.com/u/tutum/mariadb/): diff --git a/add_skin.sh b/add_skin.sh index c39c3cb..a80741e 100644 --- a/add_skin.sh +++ b/add_skin.sh @@ -4,6 +4,6 @@ EXT_NAME=$1 EXT_VERSION=$2 cd /app/skins -git clone https://git.wikimedia.org/git/mediawiki/skins/$1 +git clone https://gerrit.wikimedia.org/r/p/mediawiki/skins/$1 cd $1 git checkout -b $2 origin/$2