sentry changes

This commit is contained in:
Jessica Frazelle 2014-10-09 10:02:35 -07:00
parent af008ce05e
commit b4f2a4fe61
2 changed files with 4 additions and 3 deletions

View File

@ -2,10 +2,11 @@ FROM debian:jessie
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apt-get update && apt-get install -y \
language-pack-en \
g++ \
libpq5 \
libpq-dev \
libxml2-dev \
locales \
postgresql-client-9.4 \
postgresql-client-common \
python \
@ -29,4 +30,4 @@ ADD sentry.conf.py /sentry.conf.py
ENTRYPOINT ["/usr/local/bin/sentry", "--config=/sentry.conf.py"]
CMD ["upgrade"]
CMD ["upgrade"]

View File

@ -27,7 +27,7 @@ SENTRY_PUBLIC = False
# You should configure the absolute URI to Sentry. It will attempt to guess it if you don't
# but proxies may interfere with this.
# SENTRY_URL_PREFIX = 'http://sentry.example.com' # No trailing slash!
SENTRY_URL_PREFIX = os.environ.get('SENTRY_URL_PREFIX', 'http://sentry.example.com') # No trailing slash!
SENTRY_WEB_HOST = '0.0.0.0'
SENTRY_WEB_PORT = 9000