Skip to content

Commit

Permalink
docker-image: bump to casper-node 2.0.0-rc4
Browse files Browse the repository at this point in the history
  • Loading branch information
marijanp committed Sep 10, 2024
1 parent 89b473d commit b48ecd9
Showing 1 changed file with 49 additions and 23 deletions.
72 changes: 49 additions & 23 deletions docker-image.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,37 +5,63 @@
}:
dockerTools.buildLayeredImage {
name = "ghcr.io/cspr-rad/cctl-rs";
tag = "cctl-casper-node-1.5.7";
tag = "cctl-casper-node-2.0.0-rc4";
extraCommands = ''
mkdir -p tmp
'';
config = {
Cmd = lib.getExe cctld;
ExposedPorts = {
# RPC ports
"11101/tcp" = { };
"11102/tcp" = { };
"11103/tcp" = { };
"11104/tcp" = { };
"11105/tcp" = { };
# Node ports
# PROTOCOL ports
"11101" = { };
"11102" = { };
"11103" = { };
"11104" = { };
"11105" = { };

# BINARY ports
"12101" = { };
"12102" = { };
"12103" = { };
"12104" = { };
"12105" = { };

# REST ports
"14101/tcp" = { };
"14102/tcp" = { };
"14103/tcp" = { };
"14104/tcp" = { };
"14105/tcp" = { };
"13101" = { };
"13102" = { };
"13103" = { };
"13104" = { };
"13105" = { };

# SSE ports
"18101/tcp" = { };
"18102/tcp" = { };
"18103/tcp" = { };
"18104/tcp" = { };
"18105/tcp" = { };
# Consensus ports
"22101/tcp" = { };
"22102/tcp" = { };
"22103/tcp" = { };
"22104/tcp" = { };
"22105/tcp" = { };
"14101" = { };
"14102" = { };
"14103" = { };
"14104" = { };
"14105" = { };

# Sidecar ports
# NODE-CLIENT ports
"12101/tcp" = { };
"12102/tcp" = { };
"12103/tcp" = { };
"12104/tcp" = { };
"12105/tcp" = { };

# MAIN-RPC ports
"21101" = { };
"21102" = { };
"21103" = { };
"21104" = { };
"22105" = { };

# SPEC-EXEC ports
"22101" = { };
"22102" = { };
"22103" = { };
"22104" = { };
"21105" = { };
};
};
}

0 comments on commit b48ecd9

Please sign in to comment.