-
Notifications
You must be signed in to change notification settings - Fork 13
/
dev_local.sh
executable file
·53 lines (40 loc) · 1.11 KB
/
dev_local.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/bash
# Run fink_broker container in interactive mode inside k8s
# Local source code is mounted inside the container
# @author Fabrice Jammes
set -euo pipefail
DIR=$(cd "$(dirname "$0")"; pwd -P)
. "$CIUXCONFIG"
CONTAINER="fink-broker"
usage() {
cat << EOD
Usage: $(basename "$0") [options]
Available options:
-h This message
Run $CONTAINER container in development mode
EOD
}
# Get the options
while getopts h c ; do
case $c in
h) usage ; exit 0 ;;
\?) usage ; exit 2 ;;
esac
done
shift "$((OPTIND-1))"
if [ $# -ne 0 ] ; then
usage
exit 2
fi
echo "Running in development mode"
FINK_HOME="$DIR"
MOUNTS="-v $HOME:$HOME"
MOUNTS="$MOUNTS --volume /etc/group:/etc/group:ro -v /etc/passwd:/etc/passwd:ro"
echo "oOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoO"
echo " Welcome in $CONTAINER developement container"
echo "oOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoOoO"
docker run --net=host --name "$CONTAINER" \
--env FINK_HOME="$FINK_HOME" \
--env HOME="$HOME" \
--user=$(id -u):$(id -g $USER) \
-it $MOUNTS --rm -w "$HOME" "$CIUX_IMAGE_URL" bash