-
-
Notifications
You must be signed in to change notification settings - Fork 6
Description
After using the docker compose and cahnging it to setup the values needed the logs of the app container keep haning and stating that install.php and config.php arent there
Docker-compose.yaml
services:
��moodle-app:
����image: tiredofit/moodle:latest
����container_name: moodle-app
����links:
����� - moodle-db
����labels:
����� - traefik.enable=true
����� - traefik.http.routers.moodle.rule=Host(moodle.sojab0on.nl)
����� - traefik.http.services.moodle.loadbalancer.server.port=90
����volumes:
����� - ./data/:/www/data
����� - ./www/:/www/moodle
����� - ./logs/:/www/logs
����environment:
����� - TIMEZONE=Europe/Amsterdam
����� - CONTAINER_NAME=moodle.sojab0on.nl
����� - DB_HOST=moodle-db
����� - DB_NAME=moodle
����� - DB_USER=moodle
����� - DB_PASS=
First time installation only
����� - ADMIN_USER=admin
����� - ADMIN_EMAIL=
����� - ADMIN_PASS=
����� - SITE_URL=https://moodle.sojab0on.nl
����� - SITE_NAME=LMS-IT-Naturals
����� - SITE_SHORT_NAME=IT-NAT-LMS
����networks:
����� - proxy
����� - services
����restart: always
��moodle-db:
����image: tiredofit/mariadb
����container_name: moodle-db
volumes:
����� - ./db:/var/lib/mysql
environment:
����� - TIMEZONE=Europe/Amsterdam
����� - CONTAINER_NAME=moodle-db
����� - ROOT_PASS=
����� - DB_NAME=moodle
����� - DB_USER=moodle
����� - DB_PASS=
networks:
����� - services
restart: always
moodle-db-backup:
container_name: moodle-db-backup
image: tiredofit/db-backup
links:
���� - moodle-db
volumes:
����� - ./dbbackup:/backup
environment:
����� - TIMEZONE=Europe/Amsterdam
����� - CONTAINER_NAME=moodle-db-backup
����� - DB_HOST=moodle-db
����� - DB_TYPE=mariadb
����� - DB_NAME=moodle
����� - DB_USER=moodle
����� - DB_PASS=
����� - DB01_BACKUP_INTERVAL=1440
����� - DB01_BACKUP_BEGIN=0000
����� - DB_CLEANUP_TIME=8640
networks:
����� - services
restart: always
networks:
proxy:
external: true
services:
external: true
Have redacted all password and email adress for admin account