feat: add meilisearch to record/search converted addresses

This commit is contained in:
João Paulo Dubas 2024-08-10 12:16:42 +00:00
parent a2d356dd3c
commit e76aaf999e
Signed by: joao.dubas
SSH Key Fingerprint: SHA256:V1mixgOGRc/YMhGx/DNkOSmJxgA2vHNrDZEk3wt/kOA

View File

@ -11,6 +11,24 @@ services:
restart: unless-stopped restart: unless-stopped
entrypoint: sleep entrypoint: sleep
command: infinity command: infinity
search:
image: 'getmeili/meilisearch:v1.9.0'
hostname: meili
restart: unless-stopped
environment:
MEILI_ENV: development
MEILI_MASTER_KEY: &meili_master_key ${ADDRESSEX_MEILI_KEY:-59EDmQofBp8vGT8kMvJJADPHRWHEAsWzZjCCqBFpVeuBmC2kWgCiBEgG7vfZ3ArY}
volumes:
- 'meili_data:/meili_data'
ports:
- '${ADDRESSEX_MEILI_PORT:-7700}:7700'
search_ui:
image: 'riccoxie/meilisearch-ui:v0.6.16'
hostname: search-ui
init: true
restart: unless-stopped
ports:
- '${ADDRESSEX_MEILI_UI_PORT:-24900}:24900'
ex: ex:
build: build:
target: elixir target: elixir
@ -36,7 +54,12 @@ services:
hostname: go hostname: go
init: true init: true
restart: unless-stopped restart: unless-stopped
environment:
MEILI_MASTER_KEY: *meili_master_key
ports: ports:
- '9000:9000' - '9000:9000'
entrypoint: sleep entrypoint: sleep
command: infinity command: infinity
volumes:
meili_data: {}