プレイグラウンド、サンドボックス、使い捨てスクリプト置き場
0

Configure Feed

Select the types of activity you want to include in your feed.

create moodle

Kohei Watanabe (Oct 8, 2020, 1:29 PM +0900) f44b75c6 6069015c

+33
+33
moodle/docker-compose.yml
··· 1 + version: '2' 2 + services: 3 + mariadb: 4 + image: 'docker.io/bitnami/mariadb:10.3-debian-10' 5 + environment: 6 + - ALLOW_EMPTY_PASSWORD=yes 7 + - MARIADB_USER=bn_moodle 8 + - MARIADB_DATABASE=bitnami_moodle 9 + volumes: 10 + - 'mariadb_data:/bitnami/mariadb' 11 + moodle: 12 + image: 'docker.io/bitnami/moodle:3-debian-10' 13 + ports: 14 + - '80:8080' 15 + - '443:8443' 16 + environment: 17 + - MOODLE_DATABASE_HOST=mariadb 18 + - MOODLE_DATABASE_PORT_NUMBER=3306 19 + - MOODLE_DATABASE_USER=bn_moodle 20 + - MOODLE_DATABASE_NAME=bitnami_moodle 21 + - ALLOW_EMPTY_PASSWORD=yes 22 + volumes: 23 + - 'moodle_data:/bitnami/moodle' 24 + - 'moodledata_data:/bitnami/moodledata' 25 + depends_on: 26 + - mariadb 27 + volumes: 28 + mariadb_data: 29 + driver: local 30 + moodle_data: 31 + driver: local 32 + moodledata_data: 33 + driver: local