Mercurial > public > ssdt-docker
annotate scripts/.functions.sh @ 144:249ec634da33
DEP-12: rmove debugging echos
author | smith@nwoca.org |
---|---|
date | Mon, 10 Jul 2017 18:02:19 +0100 |
parents | c029be781d13 |
children | 018f62da1931 |
rev | line source |
---|---|
55
77ff739c078d
add script to provide shortened docker ps with ssdt labels
smith@nwoca.org
parents:
diff
changeset
|
1 #!/bin/bash |
143 | 2 getScriptDir() { |
3 SOURCE="${BASH_SOURCE[0]}" | |
4 while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done | |
5 echo $( cd $( dirname $SOURCE) && pwd ) | |
6 } | |
7 | |
8 if [ "$SSDT_HOME" == "" ] | |
9 then | |
10 export SSDT_SCRIPTS=$(getScriptDir) | |
11 export SSDT_HOME=$(dirname $SSDT_SCRIPTS) | |
12 fi | |
61 | 13 |
73 | 14 # deletes psql data from specified service |
15 resetDbVolume() { | |
16 # Works for named and unnamed volumes and custom $PGDATA. | |
17 # Container must be stopped | |
18 service=${1?Must supply db service to reset} | |
19 container=$(composeGetContainer $service) | |
20 if [ "$container" != "" ] | |
21 then | |
22 echo "deleting db data from $container" | |
23 docker-compose run --no-deps --rm $service bash -c "rm -rf \${PGDATA?Missing PGDATA env}" | |
24 fi | |
25 } | |
26 | |
27 # finds docker container for specified compose service | |
28 composeGetContainer() { | |
29 service=${1?"Must supply service from current project"} | |
30 | |
31 container=$( docker-compose ps | cut -d " " -f 1 -s | grep _${service}_ ) | |
32 echo $container | |
33 } | |
79
85957628f4c0
add script to clear liquibase lock on existing db container
smith@nwoca.org
parents:
73
diff
changeset
|
34 |
85957628f4c0
add script to clear liquibase lock on existing db container
smith@nwoca.org
parents:
73
diff
changeset
|
35 executeSQL() { |
85957628f4c0
add script to clear liquibase lock on existing db container
smith@nwoca.org
parents:
73
diff
changeset
|
36 service=${1?Must supply db service to execute against} |
85957628f4c0
add script to clear liquibase lock on existing db container
smith@nwoca.org
parents:
73
diff
changeset
|
37 container=$(composeGetContainer $service) |
85957628f4c0
add script to clear liquibase lock on existing db container
smith@nwoca.org
parents:
73
diff
changeset
|
38 |
85957628f4c0
add script to clear liquibase lock on existing db container
smith@nwoca.org
parents:
73
diff
changeset
|
39 echo "$2" | docker exec -i $container sh -c "gosu postgres psql \$DB_NAME" |
85
8f45c43ea7a4
DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
79
diff
changeset
|
40 } |
8f45c43ea7a4
DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
79
diff
changeset
|
41 |
8f45c43ea7a4
DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
79
diff
changeset
|
42 composeGetProject() { |
8f45c43ea7a4
DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
79
diff
changeset
|
43 service=${1?"Must supply service from current project"} |
8f45c43ea7a4
DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
79
diff
changeset
|
44 container=$(composeGetContainer $service) |
8f45c43ea7a4
DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
79
diff
changeset
|
45 echo $(docker inspect -f '{{index .Config.Labels "com.docker.compose.project" }}' $container) |
8f45c43ea7a4
DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
79
diff
changeset
|
46 } |