Skip to content

Commit

Permalink
add solana validator
Browse files Browse the repository at this point in the history
  • Loading branch information
Revantark committed Nov 18, 2024
1 parent a965b4e commit bcfaf94
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion go.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func (m *Merry) Start() error {
}
composePath := filepath.Join(home, ".merry", "docker-compose.yml")

bashCmd := runDockerCompose(composePath, "up", "-d", "cobi", "esplora", "ethereum-explorer", "arbitrum-explorer", "nginx", "garden-evm-watcher", "garden-db", "quote", "bit-ponder", "cobiv2", "relayer")
bashCmd := runDockerCompose(composePath, "up", "-d", "cobi", "esplora", "ethereum-explorer", "arbitrum-explorer", "nginx", "garden-evm-watcher", "garden-db", "quote", "bit-ponder", "cobiv2", "relayer", "solana-validator")
if m.IsHeadless && m.IsBare {
bashCmd = runDockerCompose(composePath, "up", "-d", "chopsticks", "ethereum", "arbitrum", "cosigner")
} else if m.IsHeadless {
Expand Down
7 changes: 7 additions & 0 deletions resources/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,13 @@ services:
volumes:
- ./volumes/cobi_data:/data

solana-validator:
image: ghcr.io/catalogfi/solana-test-validator:latest
container_name : solana-validator
ports:
- 8899:8899
restart: unless-stopped

orderbook:
image: ghcr.io/catalogfi/orderbook:latest
container_name: orderbook
Expand Down

0 comments on commit bcfaf94

Please sign in to comment.