April 19, 20251 yr I'm trying to launch this Library app for our Buddhist centre, but I'm struggling to get the app to Launch - It would be really beneficial if we can get this to work so any help is greatly appreciated! Thanks for the help. Here is the code I ran to launch the application: #version: "3.9" services: koha: image: teogramm/koha:24.11 container_name: koha hostname: koha ports: - 8080:8080 - 8081:8081 networks: - koha-net cap_add: - DAC_READ_SEARCH - SYS_NICE environment: MYSQL_SERVER: db MYSQL_USER: koha_teolib MYSQL_PASSWORD: Change-Me-Mysql DB_NAME: koha_teolib MEMCACHED_SERVERS: memcached:11211 MB_HOST: rabbitmq depends_on: - db - rabbitmq - memcached volumes: - koha-data:/var/lib/koha rabbitmq: image: rabbitmq:3 container_name: rabbitmq hostname: rabbitmq volumes: - rabbitmq-plugins:/etc/rabbitmq/enabled_plugins networks: - koha-net db: image: mariadb:11 container_name: mariadb-koha hostname: db volumes: - mariadb-koha:/var/lib/mysql environment: MARIADB_ROOT_PASSWORD: Change-Me-Mysql MARIADB_DATABASE: koha_teolib MARIADB_USER: koha_teolib MARIADB_PASSWORD: Change-Me-Mysql networks: - koha-net memcached: image: memcached container_name: memcached hostname: memcached networks: - koha-net volumes: koha-data: driver: local driver_opts: type: none device: /mnt/user/appdata/koha-docker/data/koha o: bind mariadb-koha: driver: local driver_opts: type: none device: /mnt/user/appdata/koha-docker/data/mariadb o: bind rabbitmq-plugins: driver: local driver_opts: type: none device: /mnt/user/appdata/koha-docker/data/rabbitmq_plugins o: bind networks: koha-net: driver: bridge ipam: config: - subnet: 172.18.0.0/16 gateway: 172.18.0.1 When I run this code and do compose up I get the following error message, I'm wondering if there is anything I can do to edit stack or edit the RabbitMQ Application to get rid of this error? I guess there is a disparity between the directory that exists and the directory it is being directed towards? Edit: I am new to coding and Un-raid so if you can advise in basic/clear terms that would be much appreciated If you have other questions that might help you find the problem and help I am happy to answer, Thanks very much. Edited April 19, 20251 yr by Jamyang_Server
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.