diff --git a/.dockerignore b/.dockerignore index 96ad777..6fd1d25 100644 --- a/.dockerignore +++ b/.dockerignore @@ -6,5 +6,4 @@ README.md *.pyc *.tar docker-compose.yml -docker-compose.yml.example data/ diff --git a/docker-compose.yml.example b/docker-compose.yml similarity index 88% rename from docker-compose.yml.example rename to docker-compose.yml index 3a4edd5..5fc0e15 100644 --- a/docker-compose.yml.example +++ b/docker-compose.yml @@ -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