mirror of
https://github.com/postgresml/pgcat.git
synced 2026-03-22 17:06:29 +00:00
* Prepared stmt sharding s tests * len check * remove python test * latest rust * move that to debug for sure * Add the actual tests * latest image * Update tests/ruby/sharding_spec.rb
13 lines
316 B
Bash
Executable File
13 lines
316 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
export HOST_UID="$(id -u)"
|
|
export HOST_GID="$(id -g)"
|
|
|
|
if [[ "${1}" == "down" ]]; then
|
|
docker-compose -f "${DIR}/../docker-compose.yaml" down
|
|
exit 0
|
|
else
|
|
docker-compose -f "${DIR}/../docker-compose.yaml" run --rm pgcat-shell
|
|
fi
|