open-web3-stack / parachain-launch

Tool to generate docker-compose.yml to launch a full relaychain - parachain testnet.
Apache License 2.0
72 stars 36 forks source link

Support for extra images #84

Closed rakanalh closed 2 years ago

rakanalh commented 2 years ago

It would be nice to be able to specify some additional services that are not substrate-based nodes to run alongside what can now be configured. For example, being able to run the polkadot-js explorer.

This can be achieved by concatenating to the generated docker-compose file but it still would be nice to have this in config.yml since the output directory is not checked into git.

rakanalh commented 2 years ago

I just realized that additional services can be specified in a separate docker-compose file and docker-compose -f output/docker-compose.yml -f docker-compose.additional.yml up would work.