Skip to content

Commit

Permalink
small fixes to docker/django configs
Browse files Browse the repository at this point in the history
  • Loading branch information
rishisankar authored and EC2 Default User committed May 15, 2021
1 parent 01cb58c commit 65dbf2b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ volumes:
services:

postgres:
image: kartoza/postgis:13
image: kartoza/postgis:13.0
volumes:
- postgis-data:/var/lib/postgresql
# - dbbackups:/backups
Expand All @@ -39,10 +39,10 @@ services:
- POSTGRES_PASS=postgres
# - ALLOW_IP_RANGE=0.0.0.0/0
# Add extensions you need to be enabled by default in the DB. Default are the five specified below
- POSTGRES_MULTIPLE_EXTENSIONS=postgis,hstore,postgis_topology,postgis_raster,pgrouting
- POSTGRES_MULTIPLE_EXTENSIONS=postgis
# ports:
# - 25432:5432
restart: on-failure
restart: "no"
healthcheck:
test: "exit 0"

Expand Down Expand Up @@ -72,4 +72,4 @@ services:
# restart: on-failure
# depends_on:
# postgres:
# condition: service_healthy
# condition: service_healthy
2 changes: 1 addition & 1 deletion knovigo/ladph/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


class LadphConfig(AppConfig):
name = 'ladph'
name = 'knovigo.ladph'
2 changes: 1 addition & 1 deletion knovigo/places/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


class PlacesConfig(AppConfig):
name = 'places'
name = 'knovigo.places'

0 comments on commit 65dbf2b

Please sign in to comment.