2
0

mv docker-compose.yml{.example,}

This commit is contained in:
Matt Robenolt 2016-05-27 17:00:35 -07:00
parent 14c75ae2d1
commit 21b300226e
2 changed files with 1 additions and 5 deletions

View File

@ -6,5 +6,4 @@ README.md
*.pyc *.pyc
*.tar *.tar
docker-compose.yml docker-compose.yml
docker-compose.yml.example
data/ data/

View File

@ -7,7 +7,7 @@ services:
restart: unless-stopped restart: unless-stopped
environment: environment:
# Run `docker-compose run web config generate-secret-key` # Run `docker-compose run web config generate-secret-key`
# to get the SENTRY_SECRE_KEY value. # to get the SENTRY_SECRET_KEY value.
# SENTRY_SECRET_KEY: '' # SENTRY_SECRET_KEY: ''
SENTRY_MEMCACHED_HOST: memcached SENTRY_MEMCACHED_HOST: memcached
SENTRY_REDIS_HOST: redis SENTRY_REDIS_HOST: redis
@ -29,7 +29,6 @@ services:
web: web:
extends: base extends: base
restart: unless-stopped
links: links:
- redis - redis
- postgres - postgres
@ -40,7 +39,6 @@ services:
cron: cron:
extends: base extends: base
command: celery beat command: celery beat
restart: unless-stopped
links: links:
- redis - redis
- postgres - postgres
@ -49,7 +47,6 @@ services:
worker: worker:
extends: base extends: base
command: celery worker command: celery worker
restart: unless-stopped
links: links:
- redis - redis
- postgres - postgres