https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23239

--- Comment #2 from Javier <[email protected]> ---
Fix: use MariaDB 10.1.40

Snippet of docker-compose file:

----------------------------------------------------------------------
version: '3.7'

services:

  koha-db:
    container_name: koha-db
    # issue: install.pl: DBD::mysql::st execute failed: Incorrect integer value
(edit) 
    #image: mariadb
    #image: mariadb:10.0.15
    image: mariadb:10.1
    environment:
      MYSQL_ROOT_PASSWORD: koha

  koha:
    container_name: koha
    image: kedu/koha-community
    cap_add:
        - SYS_NICE
        - DAC_READ_SEARCH
    depends_on:
        - koha-db
    environment:
      LIBRARY_NAME: koha
      SLEEP: 3
      INTRAPORT: 8080
      DB_HOST: koha-db
      DB_ROOT_PASSWORD: koha
    ports:
      - "80:80"
      - "8080:8080"
----------------------------------------------------------------------

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to