035179593513 [email protected]
[tm_pb_section admin_label=”section”][tm_pb_row admin_label=”row”][tm_pb_column type=”4_4″][tm_pb_text admin_label=”Text” text_orientation=”left” use_border_color=”off” border_color=”#ffffff” border_style=”solid”]

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

 

[/tm_pb_text][/tm_pb_column][/tm_pb_row][/tm_pb_section]