ILIAS Open Source Learning Management System - Development Image
10K+
12-alpha-php8.5-apache, 12-alpha (12-alpha/Dockerfile)12-alpha-php8.4-apache (12-alpha/Dockerfile)11-php8.4-apache, 11, latest (11/Dockerfile)11-php8.3-apache (11/Dockerfile)10-php8.3-apache, 10 (10/Dockerfile)10-php8.2-apache (10/Dockerfile)9-php8.2-apache, 9 (9/Dockerfile)9-php8.1-apache (9/Dockerfile)This is a Docker image for developing ILIAS. For the production image see https://hub.docker.com/r/srsolutions/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:
services:
ilias:
image: srsolutions/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: mariadb
command: |
--character-set-server=utf8
--collation-server=utf8_general_ci
environment:
- MYSQL_ROOT_PASSWORD=example
- MYSQL_DATABASE=ilias
Content type
Image
Digest
sha256:4d9a4b8f1…
Size
524.5 MB
Last updated
about 2 months ago
docker pull srsolutions/ilias-dev