- Initial release.
This commit is contained in:
commit
5fe1cc0bac
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
*~
|
||||
*.old
|
||||
45
Dockerfile
Normal file
45
Dockerfile
Normal file
@ -0,0 +1,45 @@
|
||||
# Rx3-Docker/MediaWiki Dockerfile
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
ARG IMG_FROM_URL="rx3-docker/php-apache:latest"
|
||||
|
||||
FROM ${IMG_FROM_URL}
|
||||
|
||||
ARG IMG_NAME
|
||||
ARG IMG_NAME_FULL
|
||||
ARG IMG_VERSION
|
||||
ARG IMG_MAINTAINER
|
||||
|
||||
LABEL org.rx3.${IMG_NAME}.name=${IMG_NAME_FULL}
|
||||
LABEL org.rx3.${IMG_NAME}.version=${IMG_VERSION}
|
||||
LABEL org.rx3.${IMG_NAME}.maintainer=${IMG_MAINTAINER}
|
||||
LABEL maintainer=${IMG_MAINTAINER}
|
||||
|
||||
ARG MEDIAWIKI_VERSION=1.43.5
|
||||
|
||||
|
||||
|
||||
#----------------------------------------------------------------------------------------------------
|
||||
ARG MEDIAWIKI='#!/bin/bash \n\
|
||||
\n\
|
||||
chown -R apache:apache ${APACHE_DOC_ROOT} \n\
|
||||
chmod -R a-x,a+X ${APACHE_DOC_ROOT} \n\
|
||||
chmod o-rwx ${APACHE_DOC_ROOT} \n\
|
||||
chmod -R o+rwX ${APACHE_DOC_ROOT}/mediawiki/config \n\
|
||||
\n\
|
||||
\n\
|
||||
sed -i -e "s%mailhub=mail%mailhub=${SMTP_SERVER}%" /etc/ssmtp/ssmtp.conf'
|
||||
#----------------------------------------------------------------------------------------------------
|
||||
|
||||
|
||||
|
||||
RUN urpmi.update -a \
|
||||
&& urpmi --force wget ssmtp php-iconv php-fileinfo php-dom php-apcu php-gd git \
|
||||
&& wget -q -O - https://releases.wikimedia.org/mediawiki/1.43/mediawiki-${MEDIAWIKI_VERSION}.tar.gz | tar xzvf - -C /var/www/html \
|
||||
&& mv /var/www/html/mediawiki-${MEDIAWIKI_VERSION} /var/www/html/mediawiki \
|
||||
&& ln -s /var/www/html/mediawiki/config/LocalSettings.php /var/www/html/mediawiki \
|
||||
&& chown -R root:root /var/www \
|
||||
&& chmod -R 775 /var/www \
|
||||
&& echo -e "${MEDIAWIKI}" | sed -e "s/\`/'/g" -e 's/ *$//' > /etc/init.d/mediawiki \
|
||||
&& chmod a+x /etc/init.d/mediawiki \
|
||||
&& ln -s /etc/init.d/mediawiki /etc/rcD.d/S40mediawiki
|
||||
19
ReadMe.txt
Normal file
19
ReadMe.txt
Normal file
@ -0,0 +1,19 @@
|
||||
Welcome to Rx3-Docker/MediaWiki docker image!
|
||||
|
||||
|
||||
|
||||
This project aims to build a MediaWiki docker image.
|
||||
|
||||
Features:
|
||||
- Curtently based on rx3-docker/php-apache:1.5.4-mga9 & rx3-docker/postgresql:1.1.4-mga9 images,
|
||||
- Sync with MediaWiki 1.43.5.
|
||||
|
||||
|
||||
|
||||
Enjoy it!
|
||||
|
||||
Your Rx3 Team.
|
||||
|
||||
--
|
||||
arnaud@rx3.net
|
||||
https://git.rx3.org/gitea/rx3-docker/mantisbt
|
||||
6
ReleaseNotes.txt
Normal file
6
ReleaseNotes.txt
Normal file
@ -0,0 +1,6 @@
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
Rx3-Docker/MediaWiki V 1.0.0 - A. GIBERT - 2025/11/18
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
- Initial release,
|
||||
- Use based on rx3-docker/php-apache:1.5.4-mga9 & rx3-docker/postgresql:1.1.4-mga9 images.
|
||||
104
compose.yaml
Normal file
104
compose.yaml
Normal file
@ -0,0 +1,104 @@
|
||||
# Rx3-Docker/MediaWiki Docker Image
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
name: ${HOST_NAME_PREFIX}
|
||||
|
||||
services:
|
||||
database:
|
||||
container_name: ${DB_HOST_NAME}
|
||||
hostname: ${DB_HOST_NAME}
|
||||
|
||||
image: ${DB_IMG_URL}
|
||||
|
||||
restart: unless-stopped
|
||||
|
||||
environment:
|
||||
POSTGRESQL_UID: ${DB_USER_ID}
|
||||
POSTGRESQL_GID: ${DB_GROUP_ID}
|
||||
POSTGRESQL_POSTGRES_PASSWORD: ${DB_POSTGRES_PASSWORD}
|
||||
POSTGRESQL_DATABASE: ${DB_NAME}
|
||||
POSTGRESQL_USER: ${DB_USER}
|
||||
POSTGRESQL_PASSWORD: ${DB_PASSWORD}
|
||||
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "sh -c 'pg_isready -U ${DB_USER} -d ${DB_NAME}'"]
|
||||
interval: 10s
|
||||
timeout: 3s
|
||||
retries: 3
|
||||
|
||||
volumes:
|
||||
- ./${DB_LIB_EXT}:${DB_LIB_INT}
|
||||
- ./${DB_LOG_INIT_EXT}:${DB_LOG_INIT_INT}
|
||||
- ./${DB_LOG_SV_EXT}:${DB_LOG_SV_INT}
|
||||
- ./${DB_LOG_MAIN_EXT}:${DB_LOG_MAIN_INT}
|
||||
|
||||
networks:
|
||||
- appl
|
||||
|
||||
# ports:
|
||||
# - "127.0.0.1:${DB_PORT_SV_EXT}:${DB_PORT_SV_INT}"
|
||||
# - "127.0.0.1:${DB_PORT_MAIN_EXT}:${DB_PORT_MAIN_INT}"
|
||||
|
||||
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
webapp:
|
||||
container_name: ${WA_HOST_NAME}
|
||||
hostname: ${WA_HOST_NAME}
|
||||
|
||||
image: ${WA_IMG_URL}
|
||||
|
||||
build:
|
||||
context: .
|
||||
args:
|
||||
IMG_NAME: ${WA_IMG_URL}
|
||||
IMG_NAME_FULL: ${WA_IMG_NAME_FULL}
|
||||
IMG_VERSION: ${WA_IMG_VERSION}
|
||||
IMG_MAINTAINER: ${APPL_MAINTAINER}
|
||||
IMG_FROM_URL: ${WA_IMG_FROM_URL}
|
||||
|
||||
restart: unless-stopped
|
||||
|
||||
depends_on:
|
||||
database:
|
||||
condition: service_healthy
|
||||
|
||||
environment:
|
||||
SERVER_CROND_ENABLED: ${WA_CROND_ENABLED}
|
||||
APACHE_UID: ${WA_USER_ID}
|
||||
APACHE_GID: ${WA_GROUP_ID}
|
||||
APACHE_DOC_ROOT: ${WA_APACHE_DOC_ROOT}
|
||||
PHP_UPLOAD_LIMIT: ${WA_PHP_UPLOAD_LIMIT}
|
||||
|
||||
volumes:
|
||||
- ./${WA_LOG_INIT_EXT}:${WA_LOG_INIT_INT}
|
||||
- ./${WA_LOG_SV_EXT}:${WA_LOG_SV_INT}
|
||||
- ./${WA_LOG_HTTPD_EXT}:${WA_LOG_HTTPD_INT}
|
||||
|
||||
- ./${WA_CONF_EXT}:${WA_CONF_INT}
|
||||
- ./${WA_IMG_EXT}:${WA_IMG_INT}
|
||||
- ./${WA_TRASH_EXT}:${WA_TRASH_INT}
|
||||
|
||||
networks:
|
||||
- appl
|
||||
# - internal
|
||||
|
||||
ports:
|
||||
- "127.0.0.1:${WA_PORT_SV_EXT}:${WA_PORT_SV_INT}"
|
||||
- "127.0.0.1:${WA_PORT_MAIN_EXT}:${WA_PORT_MAIN_INT}"
|
||||
|
||||
networks:
|
||||
appl:
|
||||
name: ${NETWORK_NAME}
|
||||
driver: bridge
|
||||
driver_opts:
|
||||
com.docker.network.bridge.name: ${NETWORK_IF_NAME}
|
||||
# ipam:
|
||||
# config:
|
||||
# - subnet: 10.2.33.0/24
|
||||
# gateway: 10.2.33.254
|
||||
|
||||
# internal:
|
||||
# name: mantisbt-squashtm-internal
|
||||
# external: true
|
||||
119
env.dist
Normal file
119
env.dist
Normal file
@ -0,0 +1,119 @@
|
||||
# Rx3-Docker/MediaWiki Docker Image
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
# Global Settings
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
ORG_NAME="rx3-docker"
|
||||
ORG_REGISTRY="docker.xor.rx3:5000"
|
||||
|
||||
ORG_URL_PREFIX="${ORG_REGISTRY}/${ORG_NAME}"
|
||||
|
||||
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
# Image Settings
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
APPL_NAME="mediawiki"
|
||||
APPL_NAME_FULL="MediaWiki Server"
|
||||
APPL_NAME_SHORT="mediawk"
|
||||
APPL_ORG="rx3-docker"
|
||||
APPL_VERSION="1.0.0"
|
||||
APPL_MAINTAINER='"Arnaud G. GIBERT" <arnaud@rx3.net>'
|
||||
|
||||
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
# User Settings
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
#APPL_ENV="prd"
|
||||
#APPL_ENV="tst"
|
||||
#APPL_ENV="int"
|
||||
APPL_ENV="dvp"
|
||||
|
||||
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
# Common
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
if [[ "${APPL_ENV}" != "prd" ]]
|
||||
then
|
||||
APPL_SUFFIX="-${APPL_ENV}"
|
||||
PORT_ENV_OFFSET=100
|
||||
else
|
||||
APPL_SUFFIX=""
|
||||
PORT_ENV_OFFSET=0
|
||||
fi
|
||||
|
||||
ORG_URL_PREFIX="${ORG_REGISTRY}/${ORG_NAME}"
|
||||
APPL_URL_PREFIX="${ORG_REGISTRY}/${APPL_ORG}/${APPL_NAME_SHORT}"
|
||||
|
||||
HOST_NAME_PREFIX=${APPL_NAME_SHORT}${APPL_SUFFIX}
|
||||
|
||||
PORT_ENV_OFFSET=0
|
||||
|
||||
PORT_SV_INT=9001
|
||||
PORT_SV_OFFSET=1000
|
||||
|
||||
NETWORK_NAME=${HOST_NAME_PREFIX}
|
||||
NETWORK_IF_NAME=br-${HOST_NAME_PREFIX}
|
||||
|
||||
DOCKER_TOOLS_DEBUG=FALSE
|
||||
DOCKER_TOOLS_VOLUME=MIXED
|
||||
#DOCKER_TOOLS_VOLUME=MERGED
|
||||
DOCKER_TOOLS_EXEPTION_LIBS="postgres:pgsql"
|
||||
|
||||
|
||||
|
||||
#------------------+----------+--------------------------+--------------------+------------------+-------------------------------+----------------------+--------------------+---------------+------------+--------------+------------+-------+-------+-------+-------+--------------+--------------+
|
||||
# | Variable | Service | Target Image | From Image | Module | Main Port | Admin Port | User | Group |
|
||||
# | Prefix | Name | URL Prefix | Name | Name Full | Version | URL Prefix | Name | Version | Name | Version | Ext | Int | Ext | Int | Name / Id | Name / Id |
|
||||
#------------------+----------+--------------------------+--------------------+------------------+-------------------------------+----------------------+--------------------+---------------+------------+--------------+------------+-------+-------+-------+-------+--------------+--------------+
|
||||
|
||||
docker_service_add DB database ${ORG_URL_PREFIX} postgresql - 1.1.4-mga9 - - - postgres - - 5432 - - postgres postgres
|
||||
|
||||
docker_service_add WA webapp ${ORG_URL_PREFIX} mediawiki "Rx3-Docker/MediaWiki" ${APPL_VERSION}-mga9 ${ORG_URL_PREFIX} php-apache 1.5.4-mga9 - - 8070 80 - - apache apache
|
||||
|
||||
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
# Database
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
DB_POSTGRES_PASSWORD="postgresadmin"
|
||||
DB_NAME="mediawiki"
|
||||
DB_USER="mediawiki"
|
||||
DB_PASSWORD="mediawikiadmin"
|
||||
|
||||
DB_SERVER_NAME="MediaWiki"
|
||||
|
||||
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
# WebApp
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
WA_CROND_ENABLED="FALSE"
|
||||
|
||||
WA_APACHE_DOC_ROOT="/var/www/html"
|
||||
WA_PHP_UPLOAD_LIMIT="64M"
|
||||
|
||||
WA_LOG_HTTPD_EXT="./var/log/httpd-webapp"
|
||||
WA_LOG_HTTPD_INT="/var/log/httpd"
|
||||
|
||||
WA_CONF_EXT=./etc/${APPL_NAME}
|
||||
WA_CONF_INT=${WA_APACHE_DOC_ROOT}/${APPL_NAME}/config
|
||||
|
||||
WA_IMG_EXT=./var/lib/mediawiki/images
|
||||
WA_IMG_INT=${WA_APACHE_DOC_ROOT}/${APPL_NAME}/images
|
||||
|
||||
WA_TRASH_EXT=./var/lib/mediawiki/trash
|
||||
WA_TRASH_INT=/var/www/trash
|
||||
|
||||
#docker_config_add ${WA_CONF_EXT}/config_inc.php ${WA_CONF_EXT}/config_inc.php.ref
|
||||
|
||||
#WA_SMTP_SERVER="mail.rx3.net"
|
||||
4
etc/mediawiki/.gitignore
vendored
Normal file
4
etc/mediawiki/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
# Ignore everything in this directory
|
||||
*
|
||||
# Except this file
|
||||
!.gitignore
|
||||
2
var/lib/mediawiki/images/.gitignore
vendored
Normal file
2
var/lib/mediawiki/images/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
*~
|
||||
*.old
|
||||
10
var/lib/mediawiki/images/.htaccess
Normal file
10
var/lib/mediawiki/images/.htaccess
Normal file
@ -0,0 +1,10 @@
|
||||
<IfModule headers_module>
|
||||
Header set X-Content-Type-Options nosniff
|
||||
</IfModule>
|
||||
<IfModule php7_module>
|
||||
php_flag engine off
|
||||
</IfModule>
|
||||
# In php8, php dropped the version number.
|
||||
<IfModule php_module>
|
||||
php_flag engine off
|
||||
</IfModule>
|
||||
2
var/lib/mediawiki/images/README
Normal file
2
var/lib/mediawiki/images/README
Normal file
@ -0,0 +1,2 @@
|
||||
If uploads are enabled in the wiki, files will be put in subdirectories
|
||||
under here.
|
||||
4
var/lib/mediawiki/trash/.gitignore
vendored
Normal file
4
var/lib/mediawiki/trash/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
# Ignore everything in this directory
|
||||
*
|
||||
# Except this file
|
||||
!.gitignore
|
||||
4
var/lib/pgsql/.gitignore
vendored
Normal file
4
var/lib/pgsql/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
# Ignore everything in this directory
|
||||
*
|
||||
# Except this file
|
||||
!.gitignore
|
||||
4
var/log/httpd-webapp/.gitignore
vendored
Normal file
4
var/log/httpd-webapp/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
# Ignore everything in this directory
|
||||
*
|
||||
# Except this file
|
||||
!.gitignore
|
||||
4
var/log/init-database/.gitignore
vendored
Normal file
4
var/log/init-database/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
# Ignore everything in this directory
|
||||
*
|
||||
# Except this file
|
||||
!.gitignore
|
||||
4
var/log/init-webapp/.gitignore
vendored
Normal file
4
var/log/init-webapp/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
# Ignore everything in this directory
|
||||
*
|
||||
# Except this file
|
||||
!.gitignore
|
||||
4
var/log/postgres/.gitignore
vendored
Normal file
4
var/log/postgres/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
# Ignore everything in this directory
|
||||
*
|
||||
# Except this file
|
||||
!.gitignore
|
||||
4
var/log/supervisor-database/.gitignore
vendored
Normal file
4
var/log/supervisor-database/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
# Ignore everything in this directory
|
||||
*
|
||||
# Except this file
|
||||
!.gitignore
|
||||
4
var/log/supervisor-webapp/.gitignore
vendored
Normal file
4
var/log/supervisor-webapp/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
# Ignore everything in this directory
|
||||
*
|
||||
# Except this file
|
||||
!.gitignore
|
||||
Loading…
Reference in New Issue
Block a user