mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-09 14:50:59 +00:00
5ca9cec888
With notes, students can annotate sections of the courseware.
19 lines
383 B
YAML
19 lines
383 B
YAML
version: "3"
|
|
services:
|
|
|
|
############# Notes: backend store for edX Student Notes
|
|
notes:
|
|
image: regis/openedx-notes:hawthorn
|
|
build:
|
|
context: ./notes
|
|
networks:
|
|
default:
|
|
aliases:
|
|
- notes.openedx
|
|
volumes:
|
|
- ./config/notes:/openedx/config
|
|
- ./data/notes:/openedx/data
|
|
restart: unless-stopped
|
|
depends_on:
|
|
- mysql
|