https://de.wikipedia.org/wiki/Koha_(Bibliothekssoftware)
			Web Container Exposes 2 Ports. 5000 for Frontend and 5001 for Admin, you can map it to your machine with
    ports:
      - 5000:5000
      - 5001:5001
version: '2'
services:
    db:
        image: mariadb
        environment:
            MYSQL_ROOT_PASSWORD: root
            MYSQL_DATABASE: koha
            MYSQL_USER: koha
            MYSQL_PASSWORD: koha
    memcached:
        image: memcached:alpine
    elasticsearch:
        image: koha/elasticsearch-icu:6.x
        environment:
            discovery.type: single-node
    web:
        image: julianmaurice/koha:latest
        depends_on:
            - db
            - memcached
            - elasticsearch
					
												
Recent Comments