ILIAS Open Source Learning Management System - Development Image
8.2K
This repository contains archived images only. See https://hub.docker.com/r/srsolutions/ilias-dev/ for current images.
8-alpha-php8.0-apache, 8-alpha (8-alpha/Dockerfile)8-alpha-php7.4-apache (8-alpha/Dockerfile)7-php7.4-apache, 7, latest (7/Dockerfile)7-php7.3-apache (7/Dockerfile)6-php7.4-apache, 6 (6/Dockerfile)6-php7.3-apache (6/Dockerfile)6-php7.2-apache (6/Dockerfile)5.4-php7.3-apache, 5.4 (5.4/Dockerfile)5.4-php7.2-apache (5.4/Dockerfile)5.4-php7.1-apache (5.4/Dockerfile)5.4-php7.0-apache (5.4/Dockerfile)This is a Docker image for developing ILIAS. For the production image see https://hub.docker.com/r/sturai/ilias/.
The following tools are installed as part of the image:
Since this image is intended for development, it does not contain the ILIAS source-code itself. The idea is to mount your local source directory at the appropriate location (/var/www/html).
Example docker-compose.yml for ILIAS development:
version: '3'
services:
ilias:
image: sturai/ilias-dev
ports:
- 8080:80
links:
- mysql
volumes:
- ${PWD}:/var/www/html
environment:
- ILIAS_AUTO_SETUP=1
- ILIAS_DB_USER=root
- ILIAS_DB_PASSWORD=example
mysql:
image: mysql:5.7
command: |
--character-set-server=utf8
--collation-server=utf8_general_ci
--default_authentication_plugin=mysql_native_password
environment:
- MYSQL_ROOT_PASSWORD=example
- MYSQL_DATABASE=ilias
Content type
Image
Digest
Size
402.7 MB
Last updated
almost 5 years ago
docker pull sturai/ilias-dev