An open API service indexing awesome lists of open source software.

https://github.com/moabualruz/docker-arm-wikimedia-dev-images

This tool and script helps to create arm/(Mac M1 compatible) images for the developer environment on the Wikimedia framework. Which helps with performance and debugging on arm machines.
https://github.com/moabualruz/docker-arm-wikimedia-dev-images

arm arm64 docker images m1 mac mac-m1 mediawiki wikimedia wikipedia

Last synced: 4 months ago
JSON representation

This tool and script helps to create arm/(Mac M1 compatible) images for the developer environment on the Wikimedia framework. Which helps with performance and debugging on arm machines.

Awesome Lists containing this project

README

          

# Wikimedia dev debian images with Dockerfiles
This tool and script helps to create arm/(Mac M1 compatible) images for the developer environment on the Wikimedia framework. Which helps with performance and debugging on arm machines.

## How to use Arm Docker images in your project

- Run the following to create local images

```shell
./build.sh
```

- Create `docker-compose.override.yml` file in your core project and put the following in:
```yaml
version: '3.7'
services:
mediawiki:
image: docker-registry.wikimedia.org/dev/bullseye-php81-fpm:2.0.0-arm1
mediawiki-web:
image: docker-registry.wikimedia.org/dev/bullseye-apache2:1.0.0-arm1
mediawiki-jobrunner:
image: docker-registry.wikimedia.org/dev/bullseye-php81-jobrunner:1.0.0-arm1
```

- Shutdown the current containers:
```shell
docker-compose down
```

- Start the containers:
```shell
docker-compose up -d
```