Skip to content

Commit

Permalink
stop by name
Browse files Browse the repository at this point in the history
  • Loading branch information
maxjakob committed Mar 28, 2024
1 parent ed449c5 commit 1b63e5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/_integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
shell: bash
# run: docker-compose -f "$DOCKER_COMPOSE_YAML" up -d --build elasticsearch
run: |
docker run -d -p 9200:9200 \
docker run --name es -d -p 9200:9200 \
-e "discovery.type=single-node" \
-e "xpack.security.enabled=false" \
-e "xpack.security.http.ssl.enabled=false" \
Expand All @@ -61,4 +61,4 @@ jobs:
- name: Stop containers
if: always()
shell: bash
run: docker-compose -f "$DOCKER_COMPOSE_YAML" down elasticsearch
run: docker stop es

0 comments on commit 1b63e5e

Please sign in to comment.