diff --git a/docker-compose.yml b/docker-compose.yml index 6b6a143c2..d4e100304 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -80,7 +80,7 @@ services: - POSTGRES_USER=newsblur - POSTGRES_PASSWORD=newsblur healthcheck: - test: ["CMD-SHELL", "pg_isready -U postgres"] + test: ["CMD-SHELL", "pg_isready -U newsblur"] interval: 10s timeout: 5s retries: 5 diff --git a/newsblur_web/docker_local_settings.py b/newsblur_web/docker_local_settings.py index cad7ea2f5..db4725697 100644 --- a/newsblur_web/docker_local_settings.py +++ b/newsblur_web/docker_local_settings.py @@ -11,15 +11,16 @@ ADMINS = ( SERVER_EMAIL = 'server@newsblur.com' HELLO_EMAIL = 'hello@newsblur.com' -NEWSBLUR_URL = 'http://www.newsblur.com' +NEWSBLUR_URL = 'https://localhost' SESSION_COOKIE_DOMAIN = 'localhost' # =================== # = Global Settings = # =================== DOCKERBUILD = True -DEBUG = True -DEBUG_ASSETS = DEBUG +DEBUG = False +# DEBUG = True +DEBUG_ASSETS = True MEDIA_URL = '/media/' IMAGES_URL = '/imageproxy' SECRET_KEY = 'YOUR SECRET KEY'