Skip to content

Commit dc01c8d

Browse files
author
Phil Varner
committed
rename Dockerfile and dc file, fix flake error
1 parent b0252d5 commit dc01c8d

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed
File renamed without changes.

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ APP_HOST ?= 0.0.0.0
33
APP_PORT ?= 8080
44
EXTERNAL_APP_PORT ?= ${APP_PORT}
55

6-
run_es = docker-compose -f docker-compose.elasticsearch.yml \
6+
run_es = docker-compose -f docker-compose.yml \
77
run \
88
-p ${EXTERNAL_APP_PORT}:${APP_PORT} \
99
-e PY_IGNORE_IMPORTMISMATCH=1 \
@@ -13,7 +13,7 @@ run_es = docker-compose -f docker-compose.elasticsearch.yml \
1313

1414
.PHONY: es-image
1515
es-image:
16-
docker-compose -f docker-compose.elasticsearch.yml build
16+
docker-compose -f docker-compose.yml build
1717

1818
.PHONY: docker-run-es
1919
docker-run-es: es-image
@@ -29,7 +29,7 @@ test-es:
2929

3030
.PHONY: run-es-database
3131
run-es-database:
32-
docker-compose -f docker-compose.elasticsearch.yml run --rm elasticsearch
32+
docker-compose -f docker-compose.yml run --rm elasticsearch
3333

3434
.PHONY: test
3535
test: test-elasticsearch

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Elasticsearch backend for stac-fastapi.
77
------
88
#### Running API on localhost:8083
99

10-
```docker-compose -f docker-compose.elasticsearch.yml up```
10+
```docker-compose -f docker-compose.yml up```
1111

1212
------
1313
#### Testing

docker-compose.elasticsearch.yml renamed to docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
restart: always
88
build:
99
context: .
10-
dockerfile: Dockerfile.elasticsearch
10+
dockerfile: Dockerfile
1111
platform: linux/amd64
1212
environment:
1313
- APP_HOST=0.0.0.0

stac_fastapi/elasticsearch/stac_fastapi/elasticsearch/types/error_checks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""common error checks."""
22

3-
## todo: create this client for Elasticsearch
3+
# todo: create this client for Elasticsearch
44

55
# import attr
66
# from pymongo import MongoClient

0 commit comments

Comments
 (0)