You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
version: '2'
services:
mariadb:
image: 'docker.io/bitnami/mariadb:10.5-debian-10'
environment:
- ALLOW_EMPTY_PASSWORD=yes
- MARIADB_USER=bn_moodle
- MARIADB_DATABASE=bitnami_moodle
volumes:
- 'mariadb_data:/bitnami/mariadb'
moodle:
build:
context: .
dockerfile: moodle.Dockerfile
ports:
- '80:8080'
- '443:8443'
environment:
- MOODLE_USERNAME=admin
- MOODLE_PASSWORD=admin123#
- [email protected]
- MOODLE_SITE_NAME=Bitnami Moodle 3.9
- MOODLE_DATABASE_HOST=mariadb
- MOODLE_DATABASE_PORT_NUMBER=3306
- MOODLE_DATABASE_USER=bn_moodle
- MOODLE_DATABASE_NAME=bitnami_moodle
- ALLOW_EMPTY_PASSWORD=yes
volumes:
- 'moodle_data:/bitnami/moodle'
- 'moodledata_data:/bitnami/moodledata'
- 'phpu_moodledata_data:/bitnami/phpu_moodledata'
depends_on:
- mariadb
magic-sync:
image: mickaelperrin/docker-magic-sync:latest
environment:
- SYNC_USER=www-data
- SYNC_UID=33
- SYNC_IGNORE_NAMES=.idea:.git
- SYNC_IGNORE_PATHS=www/example:www2/example2
#- MAXIMUM_INOTIFY_WATCHES=524288
volumes:
# Configure here the mappings between your host and the container.
# Simply add a `.magic` extension to the volume path in the container.
# the :cached is optional, but we hope it improves inotify events.
- ./sync/moodle_data:/bitnami/moodle.magic:cached
# this is needed for automatic discovery of mounted volumes in this container.
- /var/run/docker.sock:/tmp/docker.sock:ro
# If you want to configure USER / UID / IGNORE by volumes, you can use a simple YAML configuration file
# - ./docker-syncs.yml:/sync-entrypoint.d/docker-syncs.yml
volumes_from:
- moodle
# Privilegied mode is needed if you want to increase the maximum inotify watches for very large synced folders
# by setting the ENV var MAXIMUM_INOTIFY_WATCHES.
#privileged: true
volumes:
mariadb_data:
driver: local
moodle_data:
driver: local
moodledata_data:
driver: local
phpu_moodledata_data:
driver: local
I would like to sync the moodle_data to host folder. I always get error:
Warning: No archive files were found for these roots, whose canonical names are:
magic-sync_1 | /bitnami/moodle.magic
magic-sync_1 | /bitnami/moodle
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I would like to sync the moodle_data to host folder. I always get error:
Warning: No archive files were found for these roots, whose canonical names are:
magic-sync_1 | /bitnami/moodle.magic
magic-sync_1 | /bitnami/moodle
The text was updated successfully, but these errors were encountered: