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
*.tar
docker-compose.yml
docker-compose.yml.example
data/

View File

@ -7,7 +7,7 @@ services:
restart: unless-stopped
environment:
# 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_MEMCACHED_HOST: memcached
SENTRY_REDIS_HOST: redis
@ -29,7 +29,6 @@ services:
web:
extends: base
restart: unless-stopped
links:
- redis
- postgres
@ -40,7 +39,6 @@ services:
cron:
extends: base
command: celery beat
restart: unless-stopped
links:
- redis
- postgres
@ -49,7 +47,6 @@ services:
worker:
extends: base
command: celery worker
restart: unless-stopped
links:
- redis
- postgres