43 lines
809 B
YAML
43 lines
809 B
YAML
---
|
|
services:
|
|
libpostal:
|
|
build:
|
|
target: builder
|
|
image: 'joaodubas/addressex:builder'
|
|
profiles:
|
|
- build
|
|
hostname: libpostal
|
|
init: true
|
|
restart: unless-stopped
|
|
entrypoint: sleep
|
|
command: infinity
|
|
ex:
|
|
build:
|
|
target: elixir
|
|
image: 'joaodubas/addressex:elixir'
|
|
hostname: ex
|
|
init: true
|
|
restart: unless-stopped
|
|
entrypoint: sleep
|
|
command: infinity
|
|
py:
|
|
build:
|
|
target: python
|
|
image: 'joaodubas/addressex:python'
|
|
hostname: py
|
|
init: true
|
|
restart: unless-stopped
|
|
entrypoint: sleep
|
|
command: infinity
|
|
go:
|
|
build:
|
|
target: go
|
|
image: 'joaodubas/addressex:go'
|
|
hostname: go
|
|
init: true
|
|
restart: unless-stopped
|
|
ports:
|
|
- '9000:9000'
|
|
entrypoint: sleep
|
|
command: infinity
|