Add note about postgres image settings

This commit is contained in:
Ben Firshman 2014-01-28 00:19:38 +00:00
parent e34b433d93
commit 2883b5be6b
1 changed files with 3 additions and 1 deletions

View File

@ -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