From 2883b5be6be6303a99a7e26910bad03802a454c7 Mon Sep 17 00:00:00 2001 From: Ben Firshman Date: Tue, 28 Jan 2014 00:19:38 +0000 Subject: [PATCH] Add note about postgres image settings --- docs/django.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/django.md b/docs/django.md index 1d6c915e3..ddb12e6db 100644 --- a/docs/django.md +++ b/docs/django.md @@ -65,6 +65,8 @@ First thing we need to do is set up the database connection. Replace the `DATABA } } +These settings are determined by the [orchardup/postgresql](https://github.com/orchardup/docker-postgresql) Docker image we are using. + Then, run `fig up`: Recreating myapp_db_1... @@ -84,7 +86,7 @@ Then, run `fig up`: And your Django app should be running at localhost:3000 (or localdocker:3000 if you're using docker-osx). -You can also run management commands with Docker. To set up your database, for example, run `fig up` and in other terminal run: +You can also run management commands with Docker. To set up your database, for example, run `fig up` and in another terminal run: $ fig run web python manage.py syncdb