Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
configuration
Commits
c33d368f
Commit
c33d368f
authored
Aug 22, 2017
by
Kevin Falcone
Committed by
GitHub
Aug 22, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4055 from edx/jibsheet/remove-unused-docker-compose
This file loads nonexistant containers
parents
9e5b8b9f
2b3dbe19
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
130 deletions
+0
-130
docker/compose/edx/docker-compose.yml
+0
-130
No files found.
docker/compose/edx/docker-compose.yml
deleted
100644 → 0
View file @
9e5b8b9f
#
# Single Docker Compose cluster that will eventually start
# all edX services in a single flock of coordinated containers
#
# This work is currently experimental and a number of services
# are missing entirely. Containers that are present will not
# currently work without manual steps. We are working on
# addressing that.
#
# When running compose you must pass in two environment variables
#
# DOCKER_EDX_ROOT which points to the directory into which you checkout
# your edX source code. For example, assuming the following directory
# structure under /home/me
#
# |-- edx-src
# | |-- discovery
# | |-- cs_comments_service
# | |-- edx_discovery
# | |-- edx-platform
# | |-- xqueue
# you would define DOCKER_EDX_ROOT="/home/me/edx-src"
#
# DOCKER_DATA_ROOT is the location on your host machine where Docker
# guests can access your local filesystem for storing persistent data
# files, say MongoDB or MySQL data files.
#
db
:
container_name
:
db
image
:
mysql:5.6
environment
:
-
MYSQL_ROOT_PASSWORD='password'
#- MYSQL_DATABASE=''
-
MYSQL_USER='migrate'
-
MYSQL_PASSWORD='password'
volumes
:
-
${DOCKER_DATA_ROOT}/mysql/data:/data
ports
:
-
3306:3306
mongo
:
container_name
:
mongo
image
:
mongo:3.0
volumes
:
-
${DOCKER_DATA_ROOT}/mongo/data:/data
ports
:
-
27017:27017
# Need to build our own for ES 0.9
es
:
container_name
:
es
image
:
edxops/elasticsearch:v1
volumes
:
-
${DOCKER_DATA_ROOT}/elasticsearch/data:/data
ports
:
-
9100:9100
-
9200:9200
-
9300:9300
memcache
:
container_name
:
memcache
image
:
memcached:1.4.24
volumes
:
-
${DOCKER_DATA_ROOT}/memcache/data:/data
ports
:
-
11211:11211
nginx
:
container_name
:
nginx
image
:
edxops/nginx:v1
ports
:
-
80:80
-
443:443
rabbitmq
:
container_name
:
rabbitmq
image
:
rabbitmq:3.5.3
volumes
:
-
${DOCKER_DATA_ROOT}/rabbitmq/data:/data
ports
:
-
5672:5672
forum
:
container_name
:
forum
# Image built from the opencraft fork as it fixes
# an auth bug. Update when the change merges
# upstream
image
:
edxops/forum:latest
volumes
:
-
${DOCKER_EDX_ROOT}/cs_comments_service:/edx/app/forum/cs_comments_service
ports
:
-
4567:4567
xqueue
:
container_name
:
xqueue
image
:
edxops/xqueue:v1
ports
:
-
8040:8040
-
18040:18040
volumes
:
-
${DOCKER_EDX_ROOT}/xqueue:/edx/app/edxapp/xqueue
lms
:
container_name
:
lms
image
:
edxops/edxapp:v2
ports
:
-
8000:8000
-
18000:18000
volumes
:
-
${DOCKER_EDX_ROOT}/edx-platform:/edx/app/edxapp/edx-platform
cms
:
container_name
:
cms
image
:
edxops/edxapp:v2
ports
:
-
8010:8010
-
18010:18010
volumes
:
-
${DOCKER_EDX_ROOT}/edx-platform:/edx/app/edxapp/edx-platform
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment