This repo builds voyager. There are 3 build files, for build time, run time and portainer respectively.
docker-compose-build.yml- is the build time file, it builds the docker imagedocker-compose.yml- is the run time file, it does not build but use the pre-built image from the build scriptdocker-compose-portainer.yml- is the special Portainer running file, it uses the pre-built image from the build script and only runs on Portainer
Build the image
docker-compose -f docker-compose-build.yml builddocker-compose up -dNote: The -d option puts the conatiner in daemon mode and keeps it alive
docker-compose down