From 33252e6f3ec642b1a24f293170e8b7a666cf60a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Zrim=C5=A1ek?= Date: Fri, 2 Jun 2017 16:34:01 +0200 Subject: [PATCH] Fixed DB dump loading (wasn't changed when docker composing was changed). --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 946f44e0a..bc41aaeee 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ APP_HOME="/usr/src/app" -DB_IP=$(shell docker inspect web_db_1 | grep -m 1 "\"IPAddress\": " | awk '{ match($$0, /"IPAddress": "([0-9\.]*)",/, a); print a[1] }') +DB_IP=$(shell docker inspect scinote_db_development | grep "\"IPAddress\": " | awk '{ match($$0, /"IPAddress": "([0-9\.]*)",/, a); print a[1] }') define PRODUCTION_CONFIG_BODY SECRET_KEY_BASE=$(shell openssl rand -hex 64)