From 80279f71d883d6cb7d9bee45d01cb05c17d4d60e Mon Sep 17 00:00:00 2001 From: Damian Moore Date: Wed, 29 Jan 2014 20:01:11 +0000 Subject: [PATCH] Fixed error where Django can't connect to Postgres because psycopg2 is not installed --- docs/django.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/django.md b/docs/django.md index 9ee8207dd..9e927916a 100644 --- a/docs/django.md +++ b/docs/django.md @@ -11,6 +11,7 @@ Let's use Fig to set up and run a Django/PostgreSQL app. Before starting, you'll Let's set up the three files that'll get us started. First, our app is going to be running inside a Docker container which contains all of its dependencies. We can define what goes inside that Docker container using a file called `Dockerfile`. It'll contain this to start with: FROM orchardup/python:2.7 + RUN apt-get update -qq && apt-get install -y python-psycopg2 RUN mkdir /code WORKDIR /code ADD requirements.txt /code/