Docker로 실행한 ES INDEX 리스트 확인
curl -X GET "localhost:9200/_cat/indices?v" 이 명령어를 입력하면 index 열에 index 리스트가 나열된다.
curl -X GET "localhost:9200/_cat/indices?v"
Docker로 실행한 ES 특정 INDEX 삭제
curl -X DELETE "localhost:9200/인덱스이름"