Commit e6a2baf3 by Brian Beggs Committed by Brian Beggs

Add forums IDA

parent 0e3d492b
......@@ -16,3 +16,6 @@ services:
studio:
volumes:
- ${DEVSTACK_WORKSPACE}/edx-platform:/edx/app/edxapp/edx-platform:cached
forum:
volumes:
- ${DEVSTACK_WORKSPACE}/cs_comments_service:/edx/app/forum/cs_comments_service:cached
\ No newline at end of file
......@@ -16,6 +16,9 @@ services:
studio:
volumes:
- edxapp-sync:/edx/app/edxapp/edx-platform:nocopy
forums:
volumes:
- forum-sync:/edx/app/forum/cs_comments_service:nocopy
volumes:
credentials-sync:
......@@ -26,3 +29,5 @@ volumes:
external: true
edxapp-sync:
external: true
forum-sync:
external: true
......@@ -157,6 +157,18 @@ services:
volumes:
- edxapp_studio_assets:/edx/var/edxapp/staticfiles/
forum:
command: bash -c 'source /edx/app/forum/ruby_env source && source /edx/app/forum/forum_env && cd /edx/app/forum/cs_comments_service && while true; do ruby app.rb ; sleep 2; done'
container_name: edx.devstack.forum
depends_on:
- mongo
- memcached
- elasticsearch
image: edxops/forum:latest
ports:
- "44567:4567"
volumes:
elasticsearch_data:
mongo_data:
......
......@@ -24,3 +24,8 @@ syncs:
host_disk_mount_mode: 'cached'
src: '../edx-platform/'
sync_excludes: [ '.idea' ]
forum-sync:
host_disk_mount_mode: 'cached'
src: '../cs_comments_service/'
sync_excludes: [ '.git', '.idea' ]
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment