<div dir="ltr"><span style="color:rgb(0,0,0);font-family:consolas,"lucida console",monospace;font-size:12.8px;background-color:rgb(240,247,255)">I did a "git clone </span><a href="https://github.com/GeoNode/geonode-project.git%22" target="_blank" style="font-family:consolas,"lucida console",monospace;font-size:12.8px;background-color:rgb(240,247,255)">https://github.com/GeoNode/geonode-project.git"</a><br><div><br></div><div>I then modified my docker-compose-yml</div><div><br></div><div>By replacing the following</div><div><br></div><div>postgres:</div><div>  image: postgres</div><div><br></div><div>with </div><div><br></div><div> postgres:</div><div>  image: waybarrios/postgres</div><div><br></div><div>The reason is that, this image creates two databases - geonode (no postgis) and geonode_data (with postgis)</div><div><br></div><div>Will I have to make modifications on the following sections of the compose file:</div><div><div><br></div><div>django:</div><div>    build: .</div><div>    links:</div><div>      - postgres</div><div>      - elasticsearch</div><div>      - rabbitmq</div><div>    environment:</div><div>      - <b>DATABASE_URL=postgres://postgres:postgres@postgres:5432/postgres</b></div><div>      - BROKER_URL=amqp://guest:guest@rabbitmq:5672/</div><div>      - DJANGO_SETTINGS_MODULE={{project_name}}.settings</div><div>      - GEOSERVER_BASE_URL="<a href="http://geoserver:8080/geoserver/">http://geoserver:8080/geoserver/</a>"</div><div>      - ALLOWED_HOSTS=['django',]</div></div><div><b><br></b></div><div><b><br></b></div><div><div>celery:</div><div>    build: .</div><div>    links:</div><div>      - rabbitmq</div><div>      - postgres</div><div>      - elasticsearch</div><div>    command: celery worker --app={{project_name}}.celeryapp:app -B -l INFO</div><div>    environment:</div><div>      - <b>DATABASE_URL=postgres://postgres:postgres@postgres:5432/postgres</b></div><div>      - BROKER_URL=amqp://guest:guest@rabbitmq:5672/</div><div>      - GEOSERVER_BASE_URL="<a href="http://geoserver:8080/geoserver/">http://geoserver:8080/geoserver/</a>"</div><div>      - DJANGO_SETTINGS_MODULE={{project_name}}.settings</div><div>      - ALLOWED_HOSTS=['django',]</div><div>      - C_FORCE_ROOT=1</div></div><div><b><br></b></div><div>Besides the above will I also need to make additional changes.</div><div><br></div><div>Regards,</div><div>Mazizi</div><div><b><br></b></div><div><br></div><div><br></div></div>