Merge pull request #3 from oceanprotocol/feature/ocean_docker_refactoring

Feature/ocean docker refactoring
This commit is contained in:
Aitor 2018-08-13 14:33:02 +02:00 committed by GitHub
commit c23e08b9a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 4 deletions

View File

@ -1,8 +1,8 @@
version: '2.1' version: '2.1'
# Run: docker-compose --project-name=ocean up
services: services:
# Build: docker-compose build -d bigchaindb
# Run: docker-compose run -d bdb
mongodb: mongodb:
image: mongo:3.6 image: mongo:3.6
ports: ports:
@ -14,7 +14,6 @@ services:
bigchaindb: bigchaindb:
depends_on: depends_on:
- mongodb - mongodb
- tendermint
image: bigchaindb/bigchaindb:2.0.0-beta1 image: bigchaindb/bigchaindb:2.0.0-beta1
environment: environment:
BIGCHAINDB_DATABASE_BACKEND: localmongodb BIGCHAINDB_DATABASE_BACKEND: localmongodb
@ -38,6 +37,8 @@ services:
- backend - backend
tendermint: tendermint:
depends_on:
- bigchaindb
image: tendermint/tendermint:0.19.9 image: tendermint/tendermint:0.19.9
# volumes: # volumes:
# - ./tmdata:/tendermint # - ./tmdata:/tendermint
@ -67,7 +68,7 @@ services:
depends_on: depends_on:
- keeper-contracts - keeper-contracts
volumes: volumes:
- ./artifacts/:/usr/local/lib/python3.6/site-packages/contracts/ - ./artifacts/:/usr/local/contracts/
pleuston: pleuston:
image: oceanprotocol/pleuston image: oceanprotocol/pleuston