Created
August 6, 2025 13:49
-
-
Save andersonbosa/cb4cc6b0c686263ac93a21a23b086ac6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| services: | |
| opensearch: | |
| image: opensearchproject/opensearch:latest | |
| container_name: opensearch | |
| env_file: .env | |
| ulimits: | |
| memlock: | |
| soft: -1 | |
| hard: -1 | |
| volumes: | |
| - opensearch-data:/usr/share/opensearch/data | |
| ports: | |
| - 9200:9200 | |
| - 9600:9600 | |
| networks: | |
| - opensearch-net | |
| dashboards: | |
| image: opensearchproject/opensearch-dashboards:latest | |
| container_name: opensearch-dashboards | |
| depends_on: | |
| - opensearch | |
| ports: | |
| - 5601:5601 | |
| env_file: .env | |
| networks: | |
| - opensearch-net | |
| volumes: | |
| opensearch-data: | |
| networks: | |
| opensearch-net: | |
| driver: bridge |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment