Skip to content

Commit

Permalink
Move docker files to config/docker_demo.
Browse files Browse the repository at this point in the history
These files aren't "primary" enough to put at the repository root.

With these changes, the docker command is now:

```
$ docker compose -f config/docker_demo/docker-compose.yaml up --build elasticgraph
```
  • Loading branch information
myronmarston committed Feb 22, 2025
1 parent 69f1f74 commit 20b0c5e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions docker-compose.yaml → config/docker_demo/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ networks:
services:
opensearch:
build:
context: ./elasticgraph-local/lib/elastic_graph/local/opensearch/.
context: ../../elasticgraph-local/lib/elastic_graph/local/opensearch/.
dockerfile: Dockerfile
args:
VERSION: 2.18.0
Expand Down Expand Up @@ -40,7 +40,7 @@ services:
- 9200:9200
dashboards:
build:
context: ./elasticgraph-local/lib/elastic_graph/local/opensearch/.
context: ../../elasticgraph-local/lib/elastic_graph/local/opensearch/.
dockerfile: UI-Dockerfile
args:
VERSION: ${OPENSEARCH_VERSION}
Expand All @@ -52,8 +52,8 @@ services:
- 5601:5601
elasticgraph:
build:
context: .
dockerfile: Dockerfile
context: ../..
dockerfile: config/docker_demo/Dockerfile
args:
container_name: elasticgraph-${ENV}
environment:
Expand All @@ -64,4 +64,4 @@ services:
opensearch:
condition: service_healthy
volumes:
opensearch:
opensearch:

0 comments on commit 20b0c5e

Please sign in to comment.