mirror of
https://github.com/oceanprotocol/barge.git
synced 2024-11-14 17:15:16 +01:00
22 lines
439 B
YAML
22 lines
439 B
YAML
|
version: '3'
|
||
|
services:
|
||
|
mongodb:
|
||
|
image: mongo:3.6
|
||
|
command: mongod
|
||
|
networks:
|
||
|
backend:
|
||
|
ipv4_address: 172.15.0.11
|
||
|
aquarius:
|
||
|
image: oceanprotocol/aquarius:${AQUARIUS_VERSION:-stable}
|
||
|
ports:
|
||
|
- 5000:5000
|
||
|
networks:
|
||
|
backend:
|
||
|
ipv4_address: 172.15.0.15
|
||
|
depends_on:
|
||
|
- mongodb
|
||
|
environment:
|
||
|
DB_MODULE: ${DB_MODULE}
|
||
|
DB_HOSTNAME: ${DB_HOSTNAME}
|
||
|
DB_PORT: ${DB_PORT}
|