Skip to content

Commit

Permalink
Merge PR cosmos#2899: Remove redundant $
Browse files Browse the repository at this point in the history
  • Loading branch information
yutianwu authored and cwgoes committed Nov 26, 2018
1 parent 8af2eb2 commit 2d07176
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions PENDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ BUG FIXES
* Gaia
* [\#2723] Use `cosmosvalcons` Bech32 prefix in `tendermint show-address`
* [\#2742](https://github.com/cosmos/cosmos-sdk/issues/2742) Fix time format of TimeoutCommit override
* [\#2898](https://github.com/cosmos/cosmos-sdk/issues/2898) Remove redundant '$' in docker-compose.yml

* SDK

Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
- "26656-26657:26656-26657"
environment:
- ID=0
- LOG=$${LOG:-gaiad.log}
- LOG=${LOG:-gaiad.log}
volumes:
- ./build:/gaiad:Z
networks:
Expand All @@ -22,7 +22,7 @@ services:
- "26659-26660:26656-26657"
environment:
- ID=1
- LOG=$${LOG:-gaiad.log}
- LOG=${LOG:-gaiad.log}
volumes:
- ./build:/gaiad:Z
networks:
Expand All @@ -34,7 +34,7 @@ services:
image: "tendermint/gaiadnode"
environment:
- ID=2
- LOG=$${LOG:-gaiad.log}
- LOG=${LOG:-gaiad.log}
ports:
- "26661-26662:26656-26657"
volumes:
Expand All @@ -48,7 +48,7 @@ services:
image: "tendermint/gaiadnode"
environment:
- ID=3
- LOG=$${LOG:-gaiad.log}
- LOG=${LOG:-gaiad.log}
ports:
- "26663-26664:26656-26657"
volumes:
Expand Down

0 comments on commit 2d07176

Please sign in to comment.