[WIP] Implement server to parse address #1

Draft
joao.dubas wants to merge 24 commits from jpd-add-parser-server into main
Showing only changes of commit ffcef307b1 - Show all commits

View File

@ -4,6 +4,7 @@ services:
build:
target: builder
image: 'joaodubas/addressex:builder'
pull_policy: never
profiles:
- build
hostname: libpostal
@ -11,8 +12,9 @@ services:
restart: unless-stopped
entrypoint: sleep
command: infinity
search:
image: 'getmeili/meilisearch:v1.9.0'
image: 'getmeili/meilisearch:v1.14.0'
hostname: meili
restart: unless-stopped
environment:
@ -22,35 +24,42 @@ services:
- 'meili_data:/meili_data'
ports:
- '${ADDRESSEX_MEILI_PORT:-7700}:7700'
search_ui:
image: 'riccoxie/meilisearch-ui:v0.6.16'
image: 'riccoxie/meilisearch-ui:v0.12.1'
hostname: search-ui
init: true
restart: unless-stopped
ports:
- '${ADDRESSEX_MEILI_UI_PORT:-24900}:24900'
ex:
build:
target: elixir
image: 'joaodubas/addressex:elixir'
pull_policy: never
hostname: ex
init: true
restart: unless-stopped
entrypoint: sleep
command: infinity
py:
build:
target: python
image: 'joaodubas/addressex:python'
pull_policy: never
hostname: py
init: true
restart: unless-stopped
entrypoint: sleep
command: infinity
go:
build:
target: go
image: 'joaodubas/addressex:go'
pull_policy: never
hostname: go
init: true
restart: unless-stopped