Skip to content

Commit 40ccf80

Browse files
author
David Awad
authored
Merge pull request #52 from corda/docker-hotfix
small readme fix
2 parents 608f86d + 6f48efa commit 40ccf80

File tree

2 files changed

+2
-50
lines changed

2 files changed

+2
-50
lines changed

Features/dockerform-yocordapp/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ We will interact with the nodes via their specific shells. When the nodes are up
3737

3838
```sh
3939
# find the ssh port for PartyA using docker ps
40-
ssh [email protected] -p 2223
40+
ssh [email protected] -p 2222
4141

4242
# the password defined in the node config for PartyA is "test"
4343
Password: test
@@ -47,7 +47,7 @@ Welcome to the Corda interactive shell.
4747
You can see the available commands by typing 'help'.
4848

4949
# you'll see the corda shell available and can run flows
50-
Fri May 15 18:23:03 GMT 2020>>> flow start YoFlow target: PartyA
50+
Fri May 15 18:23:03 GMT 2020>>> flow start YoFlow target: PartyB
5151

5252
✓ Starting
5353
✓ Creating a new Yo!

Features/dockerform-yocordapp/build.gradle

Lines changed: 0 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -90,54 +90,6 @@ cordapp {
9090
}
9191
}
9292

93-
94-
task deployNodesJava(type: net.corda.plugins.Cordform, dependsOn: ['jar']) {
95-
96-
nodeDefaults {
97-
projectCordapp {
98-
deploy = false
99-
}
100-
cordapp project("contracts")
101-
cordapp project("workflows")
102-
rpcUsers = [[user: "user1", "password": "test", "permissions": ["ALL"]]]
103-
}
104-
105-
node {
106-
name "O=Notary,L=London,C=GB"
107-
notary = [validating: false]
108-
p2pPort 10001
109-
p2pAddress "0.0.0.0"
110-
rpcSettings {
111-
address("0.0.0.0:10011")
112-
adminAddress("0.0.0.0:10041")
113-
}
114-
sshdPort 2221
115-
}
116-
117-
node {
118-
name "O=PartyA,L=London,C=GB"
119-
p2pPort 10002
120-
p2pAddress "0.0.0.0"
121-
rpcSettings {
122-
address("0.0.0.0:10012")
123-
adminAddress("0.0.0.0:10042")
124-
}
125-
sshdPort 2222
126-
}
127-
128-
node {
129-
name "O=PartyB,L=New York,C=US"
130-
p2pPort 10003
131-
p2pAddress "0.0.0.0"
132-
rpcSettings {
133-
address("0.0.0.0:10013")
134-
adminAddress("0.0.0.0:10043")
135-
}
136-
sshdPort 2223
137-
}
138-
}
139-
140-
14193
task prepareDockerNodes(type: net.corda.plugins.Dockerform, dependsOn: ['jar']) {
14294

14395
dockerImage = "corda/corda-zulu-java1.8-" + corda_release_version + ":latest"

0 commit comments

Comments
 (0)