mirror of
https://github.com/peeringdb/peeringdb.git
synced 2024-05-11 05:55:09 +00:00
* update compose * add new object type, fixes #1314 * poetry lock * update pyproject * allow api_cache gen to specify depths, write to temp files * poetry lock * revert mysql specific migration * format * don't change UID for github actions * prep 2.45.0-beta * fix log message * linting --------- Co-authored-by: Stefan Pratter <stefan@20c.com>
7 lines
278 B
Bash
Executable File
7 lines
278 B
Bash
Executable File
#!/bin/bash
|
|
|
|
COMPOSE_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
PROJECT_NAME=$(basename $(git rev-parse --show-toplevel))$(basename $COMPOSE_DIR)
|
|
|
|
docker-compose -p $PROJECT_NAME -f $COMPOSE_DIR/docker-compose.yml run $run_options --rm peeringdb $@
|