Skip to content

Commit

Permalink
Format docker compose YAML files
Browse files Browse the repository at this point in the history
  • Loading branch information
pflooky authored and github-actions[bot] committed Jul 25, 2024
1 parent 29cf202 commit 7fd0210
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -658,12 +658,12 @@ services:
opensearch:
container_name: opensearch
environment:
- "discovery.type=single-node"
- discovery.type=single-node
- "OPENSEARCH_INITIAL_ADMIN_PASSWORD=${OPENSEARCH_PASSWORD:-!BigData#1}"
healthcheck:
interval: 10s
retries: 5
test: [ CMD, curl, --fail, "https://localhost:9200", "-ku", "admin:${OPENSEARCH_PASSWORD:-!BigData#1}" ]
test: [CMD, curl, --fail, "https://localhost:9200", -ku, "admin:${OPENSEARCH_PASSWORD:-!BigData#1}"]
timeout: 5s
image: "opensearchproject/opensearch:${OPENSEARCH_VERSION:-2.15.0}"
ports:
Expand Down

0 comments on commit 7fd0210

Please sign in to comment.