Mercurial > public > ssdt-docker
annotate scripts/send.sh @ 605:46a67e7afd98 release/2.23.0 tip
flow: Created branch 'release/2.23.0'.
author | Marc Davis <marc.davis@mcoecn.org> |
---|---|
date | Wed, 18 Sep 2024 20:38:06 -0400 |
parents | 9afc8cb478f6 |
children |
rev | line source |
---|---|
63 | 1 #!/bin/bash |
85
8f45c43ea7a4
DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
63
diff
changeset
|
2 # |
8f45c43ea7a4
DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
63
diff
changeset
|
3 # Securely sends a file or standard input to a SSDT web server. |
8f45c43ea7a4
DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
63
diff
changeset
|
4 # e.g: |
8f45c43ea7a4
DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
63
diff
changeset
|
5 # capture.sh | send.sh - # sends log files to ssdt server for the current project |
8f45c43ea7a4
DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
63
diff
changeset
|
6 # send.sh docker-compose.yml # sends the compose file |
8f45c43ea7a4
DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
63
diff
changeset
|
7 # |
191
fea886ba7279
DEP-12: add source for .functions.sh to all scripts using compose
smith@nwoca.org
parents:
85
diff
changeset
|
8 source "${SSDT_SCRIPTS:-$(dirname "${BASH_SOURCE[0]}")}/.functions.sh" |
85
8f45c43ea7a4
DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
63
diff
changeset
|
9 |
63 | 10 file=${1?"Usage: $0 filename [name]\n specify the filename relative to the current directory or - for stdin.\noptionally specify a short name (default to base directory)"} |
11 if [ "$file" != "-" ] | |
12 then | |
13 file="/tmp/${file}" | |
14 fi | |
15 name=${2:-$(basename $PWD)} | |
16 source=$(hostname) | |
85
8f45c43ea7a4
DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
63
diff
changeset
|
17 |
574
9afc8cb478f6
Domain changed from ssdt.io to ssdt-ohio.org
Marc Davis <marc.davis@mcoecn.org>
parents:
191
diff
changeset
|
18 docker run -i -v $SSDT_HOME:/ssdt -v ${PWD}:/tmp --rm docker.ssdt-ohio.org/ssdt-utils \ |
9afc8cb478f6
Domain changed from ssdt.io to ssdt-ohio.org
Marc Davis <marc.davis@mcoecn.org>
parents:
191
diff
changeset
|
19 curl -F source=$source -F name=$name -F file=@$file https://upload.ssdt-ohio.org/upload |