From 360b3e7c7856c2f56f7696ba7f3dd112b1e03a74 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 30 Oct 2019 02:56:53 -0400 Subject: [PATCH] Fix repeated argument in Docker instructions Signed-off-by: Roberto Rosario --- docs/chapters/docker.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/chapters/docker.rst b/docs/chapters/docker.rst index b2e0c5f4c6..9fa58333cf 100644 --- a/docs/chapters/docker.rst +++ b/docs/chapters/docker.rst @@ -35,7 +35,7 @@ Create and run a PostgreSQL container:: -e POSTGRES_DB=mayan \ -e POSTGRES_PASSWORD=mayanuserpass \ -v /docker-volumes/mayan-edms/postgres:/var/lib/postgresql/data \ - -d postgres:9.6 + postgres:9.6 The PostgreSQL container will have one database named ``mayan``, with an user named ``mayan`` too, with a password of ``mayanuserpass``. The container will @@ -97,7 +97,7 @@ binding (``-p 5432:5432``):: -e POSTGRES_DB=mayan \ -e POSTGRES_PASSWORD=mayanuserpass \ -v /docker-volumes/mayan-edms/postgres:/var/lib/postgresql/data \ - -d postgres:9.6 + postgres:9.6 Launch the Mayan EDMS container with the network option and change the database hostname to the PostgreSQL container name (``mayan-edms-postgres``)