Sign inSign up

srsolutions/ilias-dev

By srsolutions

Updated about 2 months ago

ILIAS Open Source Learning Management System - Development Image

Image
3

10K+

srsolutions/ilias-dev repository overview

Supported tags

ILIAS Development Image

This is a Docker image for developing ILIAS. For the production image see https://hub.docker.com/r/srsolutions/ilias/.

Development Tools

The following tools are installed as part of the image:

  • xDebug
  • Composer

How to use this 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

Tag summary

Content type

Image

Digest

sha256:4d9a4b8f1

Size

524.5 MB

Last updated

about 2 months ago

docker pull srsolutions/ilias-dev