mirror of
https://github.com/unraid/api.git
synced 2026-01-09 01:59:57 -06:00
5 lines
247 B
Bash
Executable File
5 lines
247 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Pass all entered params after the docker compose call
|
|
COMPOSE_PROJECT_NAME="connect" GIT_SHA=$(git rev-parse --short HEAD) IS_TAGGED=$(git describe --tags --abbrev=0 --exact-match || echo '') docker compose -f docker-compose.yml "$@"
|