mirror of
https://github.com/oceanprotocol/barge.git
synced 2024-11-22 01:37:01 +01:00
14 lines
300 B
YAML
14 lines
300 B
YAML
|
version: '3'
|
||
|
services:
|
||
|
typesense:
|
||
|
image: typesense/typesense:${TYPESENSE_VERSION:-latest}
|
||
|
ports:
|
||
|
- 8108:8108
|
||
|
networks:
|
||
|
backend:
|
||
|
ipv4_address: 172.15.0.20
|
||
|
volumes:
|
||
|
- typesense-data:/data
|
||
|
command: '--data-dir /data --api-key=xyz'
|
||
|
volumes:
|
||
|
typesense-data:
|