Merge pull request #70 from oceanprotocol/feature/improved-brizo-docker

Fixed parity-node container not exists in all compose
This commit is contained in:
Javier Cortejoso 2018-11-30 16:24:02 +01:00 committed by GitHub
commit 7953cf9b0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 7 deletions

View File

@ -1,7 +1,5 @@
version: '2.1'
# Run: docker-compose --project-name=ocean up
services:
mongodb:
image: mongo:3.6

View File

@ -1,7 +1,5 @@
version: '2.1'
# Run: docker-compose --project-name=ocean up
services:
mongodb:
image: mongo:3.6
@ -52,6 +50,8 @@ services:
- keeper-contracts
env_file:
- ${BRIZO_ENV_FILE}
environment:
KEEPER_URL: http://keeper-contracts:8545
volumes:
- ${ARTIFACTS_FOLDER}:/usr/local/keeper-contracts/:ro

View File

@ -1,7 +1,5 @@
version: '2.1'
# Run: docker-compose --project-name=ocean up
services:
mongodb:
image: mongo:3.6
@ -52,6 +50,8 @@ services:
- keeper-contracts
env_file:
- ${BRIZO_ENV_FILE}
environment:
KEEPER_URL: "http://keeper-contracts:8545"
volumes:
- ${ARTIFACTS_FOLDER}:/usr/local/keeper-contracts/:ro

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Must be set to true for the first run, change it to "false" to avoid migrating the smart contracts on each run.
export DEPLOY_CONTRACTS="false"
export DEPLOY_CONTRACTS="true"
# Ganache specific option, these two options have no effect when not running ganache-cli
export GANACHE_DATABASE_PATH="."
export REUSE_DATABASE="false"