7
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-06-26 16:53:28 +00:00
tutor/docker-compose.yml

147 lines
3.4 KiB
YAML
Raw Normal View History

2017-07-03 10:39:19 +00:00
version: "3"
services:
############# External services
2017-07-03 10:39:19 +00:00
memcached:
image: memcached:1.4.38
restart: unless-stopped
2017-07-03 10:39:19 +00:00
mongodb:
image: mongo:3.2.16
2017-07-03 10:39:19 +00:00
# Use WiredTiger in all environments, just like at edx.org
command: mongod --smallfiles --nojournal --storageEngine wiredTiger
restart: unless-stopped
2017-07-03 10:39:19 +00:00
volumes:
- ./data/mongodb:/data/db
mysql:
image: mysql:5.6.36
command: mysqld --character-set-server=utf8 --collation-server=utf8_general_ci
restart: unless-stopped
2017-07-03 10:39:19 +00:00
volumes:
- ./data/mysql:/var/lib/mysql
env_file: ./config/mysql/auth.env
2017-07-03 10:39:19 +00:00
elasticsearch:
image: elasticsearch:1.5.2
environment:
- "ES_JAVA_OPTS=-Xms1g -Xmx1g"
- "cluster.name=openedx"
- "bootstrap.memory_lock=true"
ulimits:
memlock:
soft: -1
hard: -1
restart: "unless-stopped"
volumes:
- ./data/elasticsearch:/usr/share/elasticsearch/data
2017-07-03 10:39:19 +00:00
nginx:
image: nginx:1.13
restart: unless-stopped
ports:
2017-12-26 00:16:35 +00:00
- "80:80"
- "443:443"
2017-07-03 10:39:19 +00:00
volumes:
- ./config/nginx:/etc/nginx/conf.d/
- ./data/lms:/openedx/data/lms:ro
- ./data/cms:/openedx/data/cms:ro
- ./data/letsencrypt:/etc/letsencrypt/:ro
2017-07-03 10:39:19 +00:00
rabbitmq:
image: rabbitmq:3.6.10
volumes:
- ./data/rabbitmq:/var/lib/rabbitmq
# Simple SMTP server
smtp:
image: namshi/smtp
restart: unless-stopped
############# Forum
forum:
image: regis/openedx-forum:hawthorn
build:
context: ./forum
environment:
API_KEY: "forumapikey"
SEARCH_SERVER: "http://elasticsearch:9200"
MONGOHQ_URL: "mongodb://mongodb/cs_comments_service"
restart: unless-stopped
depends_on:
- elasticsearch
- mongodb
############# LMS and CMS
2017-07-03 10:39:19 +00:00
lms:
image: regis/openedx:hawthorn
2017-07-03 10:39:19 +00:00
build:
context: ./openedx
environment:
SERVICE_VARIANT: lms
restart: unless-stopped
2017-07-03 10:39:19 +00:00
volumes:
- ./config/openedx:/openedx/config
2017-12-26 00:16:35 +00:00
- ./data/lms:/openedx/data
2017-07-03 10:39:19 +00:00
depends_on:
- elasticsearch
- forum
2017-07-03 10:39:19 +00:00
- memcached
- mongodb
- mysql
- rabbitmq
- smtp
2017-07-03 10:39:19 +00:00
cms:
image: regis/openedx:hawthorn
build:
context: ./openedx
environment:
SERVICE_VARIANT: cms
restart: unless-stopped
volumes:
- ./config/openedx:/openedx/config
2017-12-26 00:16:35 +00:00
- ./data/cms:/openedx/data
depends_on:
- memcached
- mongodb
- mysql
- rabbitmq
- smtp
############# LMS and CMS workers
2017-12-26 00:16:35 +00:00
# We could probably create one service per queue here. For small instances, it is not necessary.
lms_worker:
image: regis/openedx:hawthorn
build:
context: ./openedx
environment:
SERVICE_VARIANT: lms
C_FORCE_ROOT: "1" # run celery tasks as root #nofear
command: ./manage.py lms celery worker --loglevel=info --hostname=edx.lms.core.default.%%h --maxtasksperchild 100
restart: unless-stopped
volumes:
- ./config/openedx:/openedx/config
- ./data/lms:/openedx/data
depends_on:
- lms
2017-12-26 00:16:35 +00:00
cms_worker:
image: regis/openedx:hawthorn
2017-12-26 00:16:35 +00:00
build:
context: ./openedx
environment:
SERVICE_VARIANT: cms
C_FORCE_ROOT: "1" # run celery tasks as root #nofear
command: ./manage.py cms celery worker --loglevel=info --hostname=edx.cms.core.default.%%h --maxtasksperchild 100
restart: unless-stopped
2017-12-26 00:16:35 +00:00
volumes:
- ./config/openedx:/openedx/config
- ./data/cms:/openedx/data
2017-12-26 00:16:35 +00:00
depends_on:
- cms