mirror of
https://github.com/Cameri/nostream.git
synced 2025-03-18 13:51:53 +01:00
10 lines
286 B
Plaintext
10 lines
286 B
Plaintext
|
#!/bin/bash
|
||
|
PROJECT_ROOT="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))/.."
|
||
|
DOCKER_COMPOSE_FILE="${PROJECT_ROOT}/docker-compose.yml"
|
||
|
DOCKER_COMPOSE_TOR_FILE="${PROJECT_ROOT}/docker-compose.tor.yml"
|
||
|
|
||
|
docker compose \
|
||
|
-f $DOCKER_COMPOSE_FILE \
|
||
|
-f $DOCKER_COMPOSE_TOR_FILE \
|
||
|
down $@
|