Replies: 1 comment
-
|
still cant find a way to get it to work |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
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
moodle-app.html
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
Beta Was this translation helpful? Give feedback.
All reactions