Collection of scripts for deploying and managing Chainlink External Adapters
(use at your own risk, consider this as 100% untested)
- Update the
api_keys
file with the keys for each of your external adapters. - Update the
misc_vars
file with the environment variables that you need for your ExternalAdapters - Modify the file(s) for the external adapter(s) you want deployed.
- This will:
- Install Docker-CE if it is not already installed.
- Create a Docker Network for your external adapters
- Deploy a Redis container for your external adapters' caching
sudo ./eaManager.sh -i
--
- This will:
- Deploy a new external adapter of the selected release.
./eaManager.sh -d coingecko
--
- This will:
- Stop the current container.
- Remove the container.
- Deploy a new container based on the selected image version.
./eaManager.sh -u coingecko
--
- This will:
- List all supported external adapter names
./eaManager.sh -l
--