Skip to content

Commit 204d335

Browse files
authored
fix: validation script (#39)
The IPs were wrong. Also bump pgstac version.
1 parent df3dfbb commit 204d335

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3'
22
services:
33
app:
44
container_name: stac-fastapi-pgstac
5-
image: stac-utils/stac-fastapi
5+
image: stac-utils/stac-fastapi-pgstac
66
platform: linux/amd64
77
build: .
88
environment:
@@ -33,7 +33,7 @@ services:
3333

3434
database:
3535
container_name: stac-db
36-
image: ghcr.io/stac-utils/pgstac:v0.7.6
36+
image: ghcr.io/stac-utils/pgstac:v0.7.9
3737
environment:
3838
- POSTGRES_USER=username
3939
- POSTGRES_PASSWORD=password
@@ -47,7 +47,7 @@ services:
4747

4848
# Load joplin demo dataset into the PGStac Application
4949
loadjoplin:
50-
image: stac-utils/stac-fastapi
50+
image: stac-utils/stac-fastapi-pgstac
5151
environment:
5252
- ENVIRONMENT=development
5353
volumes:

scripts/validate

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
# Assumptions:
66
#
77
# - You have stac-api-validator installed, e.g. via `pip install stac-api-validator`
8-
# - You've loaded the joplin data, probably using `python ./scripts/ingest_joplin.py http://localhost:8080``
8+
# - You've loaded the joplin data, probably using `python ./scripts/ingest_joplin.py http://localhost:8082``
99
#
1010
# Currently, item-search is not checked, because it crashes stac-api-validator (probably a problem on our side).
1111

1212
set -e
1313

1414
if [ $# -eq 0 ]; then
15-
root_url=http://localhost:8080
15+
root_url=http://localhost:8082
1616
else
1717
root_url="$1"
1818
fi

0 commit comments

Comments
 (0)