Ricardo Arturo Cabral Mejía 2618a4d2dc feat: add pay-to-relay
2023-02-02 00:19:26 -05:00

12 lines
389 B
Bash
Executable File

#!/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_LOCAL_FILE="${PROJECT_ROOT}/docker-compose.local.yml"
docker compose \
-f $DOCKER_COMPOSE_FILE \
-f $DOCKER_COMPOSE_TOR_FILE \
-f $DOCKER_COMPOSE_LOCAL_FILE \
down $@