Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Docker to pull from new repositories. #276

Merged
merged 1 commit into from
Jan 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions tests/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ services:
# commit in the `entropy-core` repository. Refer to the wiki page at
# https://github.com/entropyxyz/meta/wiki/Git#conventions for details
# about how Git tags, branches, and commits refer to image tags here.
image: entropyxyz/server:release-v0.0.9
image: entropyxyz/entropy-tss
ports:
- "127.0.0.1:3001:3001/tcp"
command:
Expand All @@ -31,7 +31,7 @@ services:

# In a local devnet setup, for now, this is "Alice's chain."
alice-chain-node:
image: entropyxyz/entropy:release-v0.0.9
image: entropyxyz/entropy
ports:
- "127.0.0.1:9944:9944/tcp" # "RPC Port."
command:
Expand All @@ -51,7 +51,7 @@ services:

# "Bob's TSS server."
bob-tss-server:
image: entropyxyz/server:release-v0.0.9
image: entropyxyz/entropy-tss
ports:
- "127.0.0.1:3002:3002/tcp"
command:
Expand All @@ -63,7 +63,7 @@ services:

# "Bob's chain node."
bob-chain-node:
image: entropyxyz/entropy:release-v0.0.9
image: entropyxyz/entropy
ports:
- "127.0.0.1:9945:9944/tcp"
command:
Expand All @@ -80,4 +80,4 @@ services:
- "--bootnodes"
- "/dns4/alice-chain-node/tcp/30333/p2p/12D3KooWEyoppNCUx8Yx66oV9fJnriXwCcXwDDUA2kj6vnc6iDEp"
- "--tss-server-endpoint"
- "http://bob-tss-server:3002"
- "http://bob-tss-server:3002"
Loading