Skip to content

Commit

Permalink
Use unstable contract env for goerli docker setup
Browse files Browse the repository at this point in the history
Since #951, we can
use the unstable contracts environment. We want to do that for the
development machines that are run using the docker-compose. Since that
environment only exists for goerli, we only enable it for the goerli
services.

Relates to raiden-network/light-client#2521
  • Loading branch information
karlb authored and ulope committed Apr 9, 2021
1 parent 9224f0b commit fce5a87
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions deployment/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ services:
- PFS_ETH_RPC=http://parity.goerli.ethnodes.brainbot.com:8545
- PFS_STATE_DB=/state/pfs-goerli.db
- PFS_ACCEPT_DISCLAIMER=${PFS_ACCEPT_DISCLAIMER}
- PFS_DEVELOPMENT_ENVIRONMENT=unstable
labels:
- "traefik.enable=true"
- "traefik.frontend.rule=Host: pfs-goerli.services-${DEPLOY_ENV}.raiden.network"
Expand All @@ -102,6 +103,7 @@ services:
- PFS_STATE_DB=/state/pfs-goerli-with-fee.db
- PFS_ACCEPT_DISCLAIMER=${PFS_ACCEPT_DISCLAIMER}
- PFS_SERVICE_FEE=100
- PFS_DEVELOPMENT_ENVIRONMENT=unstable
labels:
- "traefik.enable=true"
- "traefik.frontend.rule=Host: pfs-goerli-with-fee.services-${DEPLOY_ENV}.raiden.network"
Expand Down Expand Up @@ -131,6 +133,7 @@ services:
- MS_ETH_RPC=http://parity.goerli.ethnodes.brainbot.com:8545
- MS_STATE_DB=/state/ms-goerli.db
- MS_ACCEPT_DISCLAIMER=${MS_ACCEPT_DISCLAIMER}
- MS_DEVELOPMENT_ENVIRONMENT=unstable

ms-goerli-backup:
<<: *defaults
Expand All @@ -141,6 +144,7 @@ services:
- MS_ACCEPT_DISCLAIMER=${MS_ACCEPT_DISCLAIMER}
- MS_KEYSTORE_FILE=${MS_BACKUP_KEYSTORE_FILE}
- MS_PASSWORD=${MS_BACKUP_PASSWORD}
- MS_DEVELOPMENT_ENVIRONMENT=unstable

msrc-ropsten:
<<: *defaults
Expand Down Expand Up @@ -235,6 +239,7 @@ services:
- SR_REGISTER_SERVICE_URL=https://pfs-goerli-with-fee.services-${DEPLOY_ENV}.raiden.network
- SR_REGISTER_ETH_RPC=http://parity.goerli.ethnodes.brainbot.com:8545
- SR_REGISTER_ACCEPT_ALL=TRUE
- SR_REGISTER_DEVELOPMENT_ENVIRONMENT=unstable
depends_on:
- traefik

Expand All @@ -250,5 +255,6 @@ services:
- SR_REGISTER_SERVICE_URL=""
- SR_REGISTER_ETH_RPC=http://parity.goerli.ethnodes.brainbot.com:8545
- SR_REGISTER_ACCEPT_ALL=TRUE
- SR_REGISTER_DEVELOPMENT_ENVIRONMENT=unstable
depends_on:
- traefik

0 comments on commit fce5a87

Please sign in to comment.