26 lines
471 B
YAML
26 lines
471 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
minigrida:
|
|
build: .
|
|
image: metropolis:5000/minigrida
|
|
environment:
|
|
- HOST
|
|
volumes:
|
|
- enrichment:/app/Enrichment
|
|
- data:/app/Data
|
|
deploy:
|
|
mode: global
|
|
|
|
volumes:
|
|
data:
|
|
driver_opts:
|
|
type: "nfs"
|
|
o: "addr=metropolis,nolock,soft,rw"
|
|
device: ":/srv/nfs/data"
|
|
enrichment:
|
|
driver_opts:
|
|
type: "nfs"
|
|
o: "addr=metropolis,nolock,soft,rw"
|
|
device: ":/srv/nfs/enrichment"
|