mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-22 21:58:00 +00:00
516ad523c1
Just reorganizing
10 lines
302 B
Bash
10 lines
302 B
Bash
#!/usr/bin/env bash
|
|
# helper function to run docker-compose using the docker/docker-compose.yml file while
|
|
# retaining a context from the root of the repository
|
|
|
|
set -e
|
|
|
|
dc () {
|
|
cd "$(cd "$(dirname "$0")" && git rev-parse --show-toplevel)"
|
|
docker-compose -f - "$@" < docker/docker-compose.yml
|
|
} |