From 38620ab5890cea5e585edcdc076486a2d79478a1 Mon Sep 17 00:00:00 2001 From: Irfan Alam Date: Tue, 15 Mar 2022 13:06:53 +0530 Subject: [PATCH] POSTGRES_NAME should be POSTGRES_DB POSTGRES_NAME should be POSTGRES_DB for the db service --- samples/django.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/django.md b/samples/django.md index 811e907a57..61c9a07777 100644 --- a/samples/django.md +++ b/samples/django.md @@ -76,7 +76,7 @@ and a `docker-compose.yml` file. (You can use either a `.yml` or `.yaml` extensi volumes: - ./data/db:/var/lib/postgresql/data environment: - - POSTGRES_NAME=postgres + - POSTGRES_DB=postgres - POSTGRES_USER=postgres - POSTGRES_PASSWORD=postgres web: