#!/usr/bin/bash # The quoting around $@ is important here to try and preserve original quoting # and pass that through to the underlying command as is. This is particularly # useful for our docker-compose exec mariadb commands that use a nested shell # to interpolate database passwords and execute sql queries or db backups. # # See "special parameters" in the bash manual for more info. /usr/bin/docker compose "$@"