The following instructions are geared towards developers, intending to contribute to opendex-docker.
Golang 1.15 (or higher)
git clone https://github.com/opendexnetwork/opendex-docker.gitCreate a feature branch.
git checkout -b your-featureMake your desired changes to the images or launcher.
Build your modified images.
tools/build <image>:<tag>Build the launcher
cd launcher
makeRun your branch with modified images locally
./launcher setupTo let others test without building the images by themselves push your feature branch to remote repository. Travis will build & push images for you.
git push origin your-featureAfter the corresponding GitHub actions build succeeded, other people can easily run your feature branch on their machine like this.
BRANCH=your-feature opendex-launcher setupThe opendex-launcher binary is from here.