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.
- Host: GitHub
- URL: https://github.com/moabualruz/docker-arm-wikimedia-dev-images
- Owner: moabualruz
- Created: 2022-07-11T11:20:40.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-21T11:55:10.000Z (over 2 years ago)
- Last Synced: 2023-08-03T19:24:12.537Z (about 2 years ago)
- Topics: arm, arm64, docker, images, m1, mac, mac-m1, mediawiki, wikimedia, wikipedia
- Language: Dockerfile
- Homepage:
- Size: 1.16 MB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```