Sign inSign up

sturai/ilias-dev

By sturai

Updated almost 5 years ago
Archived

ILIAS Open Source Learning Management System - Development Image

Image
1

8.2K

sturai/ilias-dev repository overview

Archived Repository

This repository contains archived images only. See https://hub.docker.com/r/srsolutions/ilias-dev/ for current images.

Supported tags

ILIAS Development Image

This is a Docker image for developing ILIAS. For the production image see https://hub.docker.com/r/sturai/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:

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

Tag summary

Content type

Image

Digest

Size

402.7 MB

Last updated

almost 5 years ago

docker pull sturai/ilias-dev