-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split docker compose for mainnet and preprod
- Loading branch information
Github Action
committed
Jul 2, 2024
1 parent
b1401ed
commit a6913d7
Showing
7 changed files
with
122 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
|
||
|
||
services: | ||
cardano-node: | ||
extends: | ||
file: docker-compose-common.yml | ||
service: cardano-node | ||
image: ghcr.io/intersectmbo/cardano-node:8.9.3 | ||
command: > | ||
cardano-node run --topology /configs/mainnet/topology.json | ||
--database-path /data | ||
--socket-path /ipc/${NODE_SOCKET_NAME:-node.socket} | ||
--config /configs/mainnet/config.json | ||
+RTS -N3 | ||
cardano-wallet: | ||
|
||
extends: | ||
file: docker-compose-common.yml | ||
service: cardano-wallet | ||
|
||
command: > | ||
cardano-wallet serve | ||
--node-socket /ipc/${NODE_SOCKET_NAME:-node.socket} | ||
--database /wallet-db | ||
--listen-address 0.0.0.0 | ||
--mainnet | ||
+RTS -N3 | ||
icarus: | ||
extends: | ||
file: docker-compose-common.yml | ||
service: icarus |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
|
||
|
||
services: | ||
cardano-node: | ||
extends: | ||
file: docker-compose-common.yml | ||
service: cardano-node | ||
image: cardanofoundation/cardano-wallet:${WALLET_TAG} | ||
command: > | ||
cardano-node run --topology /configs/preprod/topology.json | ||
--database-path /data | ||
--socket-path /ipc/${NODE_SOCKET_NAME:-node.socket} | ||
--config /configs/preprod/config.json | ||
+RTS -N3 | ||
cardano-wallet: | ||
|
||
extends: | ||
file: docker-compose-common.yml | ||
service: cardano-wallet | ||
|
||
command: > | ||
cardano-wallet serve | ||
--node-socket /ipc/${NODE_SOCKET_NAME:-node.socket} | ||
--database /wallet-db | ||
--listen-address 0.0.0.0 | ||
--testnet /configs/preprod/byron-genesis.json | ||
+RTS -N3 | ||
icarus: | ||
extends: | ||
file: docker-compose-common.yml | ||
service: icarus |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
|
||
|
||
|
||
services: | ||
cardano-node: | ||
|
||
extends: | ||
file: docker-compose-common.yml | ||
service: cardano-node | ||
image: ghcr.io/intersectmbo/cardano-node:8.11.0-pre | ||
command: > | ||
cardano-node run --topology /configs/sanchonet/topology.json | ||
--database-path /data | ||
--socket-path /ipc/${NODE_SOCKET_NAME:-node.socket} | ||
--config /configs/sanchonet/config.json | ||
+RTS -N3 | ||
cardano-wallet: | ||
|
||
extends: | ||
file: docker-compose-common.yml | ||
service: cardano-wallet | ||
|
||
command: > | ||
cardano-wallet serve | ||
--node-socket /ipc/${NODE_SOCKET_NAME:-node.socket} | ||
--database /wallet-db | ||
--listen-address 0.0.0.0 | ||
--testnet /configs/sanchonet/byron-genesis.json | ||
+RTS -N3 | ||
icarus: | ||
extends: | ||
file: docker-compose-common.yml | ||
service: icarus |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters