Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PB-844: docker compose use postgis version 16 #461

Merged
merged 1 commit into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/tests/test_admin_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -676,9 +676,9 @@ def test_add_update_item(self):
)

def test_add_item_with_non_standard_projection(self):
geometry = "SRID=4326;POLYGON ((6.146799690987942 46.04410910398307, "\
"7.438647976247294 46.05153158188484, 7.438632420871813 46.951082771871064, "\
"6.125143650928986 46.94353699772178, 6.146799690987942 46.04410910398307))"
geometry = "SRID=4326;POLYGON ((6.1467996909879385 46.0441091039831, "\
"7.438647976247291 46.0515315818849, 7.43863242087181 46.95108277187109, "\
"6.1251436509289805 46.943536997721836, 6.1467996909879385 46.0441091039831))"
text_geometry = "SRID=2056;POLYGON ((2500000 1100000, 2600000 1100000, 2600000 1200000, "\
"2500000 1200000, 2500000 1100000))"
post_data = {
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
db:
image: kartoza/postgis:12.0
image: kartoza/postgis:16
environment:
- POSTGRES_DB=${DB_NAME}
- POSTGRES_USER=postgres
Expand Down