This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Docker compose wrapper with submodule support | |
# Reads all docker-compose.yaml files given with -f / --files and compiles one | |
# big docker-compose.yaml file before running docker-compose. | |
# | |
# This is useful when you have nested docker-compose subprojects in different | |
# folders which contain relative paths. | |
# see: https://github.com/docker/compose/issues/3874 | |
# | |
# Environment: |