first commit
CI / typecheck (push) Successful in 1m8s
CI / format (push) Failing after 1m6s
CI / lint (push) Failing after 49s
CI / test (push) Failing after 1m8s

This commit is contained in:
SDI
2026-07-15 18:05:12 +09:00
commit 12e4f17b62
4633 changed files with 817125 additions and 0 deletions
+52
View File
@@ -0,0 +1,52 @@
name: abc-user-feedback-vector
services:
opensearch-node:
image: opensearchproject/opensearch:2.19.4
restart: unless-stopped
environment:
- cluster.name=opensearch-cluster
- node.name=opensearch-node
- discovery.type=single-node
- bootstrap.memory_lock=true
- 'OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m'
- plugins.security.disabled=true
- OPENSEARCH_INITIAL_ADMIN_PASSWORD=UserFeedback123!@#
ulimits:
memlock:
soft: -1
hard: -1
nofile:
soft: 65536
hard: 65536
volumes:
- opensearch-data:/usr/share/opensearch/data
ports:
- '9201:9200'
- '9601:9600'
opensearch-dashboards:
image: opensearchproject/opensearch-dashboards:2.19.4
restart: unless-stopped
ports:
- '5602:5601'
environment:
- 'OPENSEARCH_HOSTS=["http://opensearch-node:9200"]'
- 'DISABLE_SECURITY_DASHBOARDS_PLUGIN=true'
depends_on:
- opensearch-node
vector:
image: timberio/vector:latest-alpine
command: ['--config', '/etc/vector/vector.yml']
volumes:
- ./vector.yml:/etc/vector/vector.yml:ro
ports:
- '4319:4319' # OTLP HTTP
- '4317:4317' # OTLP gRPC
depends_on:
- opensearch-node
restart: unless-stopped
volumes:
opensearch-data: