mirror of
https://github.com/Cameri/nostream.git
synced 2025-03-18 13:51:53 +01:00
8 lines
212 B
Bash
Executable File
8 lines
212 B
Bash
Executable File
#!/bin/bash
|
|
PROJECT_ROOT="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))/.."
|
|
DOCKER_COMPOSE_FILE="${PROJECT_ROOT}/docker-compose.yml"
|
|
|
|
docker compose \
|
|
-f $DOCKER_COMPOSE_FILE \
|
|
up --build --remove-orphans $@
|