#!/bin/bash

# Get the path to all docker-compose files
# with the "-f" flag.

# Comment the services out that
# you do not want to use.


# var that holds all
# docker-compose files
docker_compose_files=""

# noVNC
# docker_compose_files+=" -f ./novnc/docker-compose.yml "

# letsencrypt
docker_compose_files+=" -f ./letsencrypt-webserver/docker-compose.yml "

# jitsi
# docker_compose_files+=" -f ./jitsi-auto-config/jitsi/docker-compose.yml "

# mumble
docker_compose_files+=" -f ./build-mumble-web/docker-compose.production.yml"


# "return" the string
echo "$docker_compose_files"