-
Notifications
You must be signed in to change notification settings - Fork 0
/
kickstart.sh
executable file
·750 lines (582 loc) · 24.6 KB
/
kickstart.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
#!/usr/bin/env bash
PROGPATH="$( cd "$(dirname "$0")" ; pwd -P )" # The absolute path to kickstart.sh
#
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# DO NOT EDIT THIS FILE! CHANGES WILL BE OVERWRITTEN ON UPDATE
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
#
# Ready to use development containers. Just run ./kickstart.sh to start a development
# environment for this project.
#
# Config-File: .kick.yml
# Website..: https://infracamp.org/getting-started/
# Copyright: Matthias Leuffen <[email protected]>
# Released under GNU General Public License <http://www.gnu.org/licenses/gpl-3.0.html>
#
################################################################################################
### DON'T CHANGE ANY VARIABLES HERE --- see ~/.kickstartconfig or ./.kickstartconfig instead ###
################################################################################################
##
KICKSTART_DOCKER_OPTS=""
# Optinal parameters for docker run (e.g. -v /some/host/path:/path)
KICKSTART_DOCKER_RUN_OPTS=""
# External Port bindings
KICKSTART_PORTS="80:80/tcp;4000:4000/tcp;4100:4100/tcp;4200:4200/tcp;4000:4000/udp"
# 1 = Don't try to download the images fr/home/matthes/Projects/infracampom the internet
OFFLINE_MODE=0
# Specify the container name by yourself (switch of auto-detection)
CONTAINER_NAME=
# The image (e.g. infracamp/kickstart-flavor-base:testing) specified in .kick.yml from:-section
FROM_IMAGE=
# The Host IP Address. Leave empty to autodetect.
KICKSTART_HOST_IP=
# Where to mount the current project folder (default: /opt)
DOCKER_MOUNT_PARAMS="-v $PROGPATH/:/opt/"
# User to run inside the container (Default: 'user')
KICKSTART_USER="user"
# For WINDOWS (WSL) users only: Change this for mapping from wsl to docker4win. Execute this in linux shell:
# `echo "KICKSTART_WIN_PATH=C:/" >> ~/.kickstartconfig`
KICKSTART_WIN_PATH=""
############################
### CODE BELOW ###
############################
# Error Handling.
set -o errtrace
trap 'on_error $LINENO' ERR;
PROGNAME=$(basename $0)
if test -t 1; then
# see if it supports colors...
ncolors=$(tput colors)
if test -n "$ncolors" && test $ncolors -ge 8; then
export COLOR_NC='\e[0m' # No Color
export COLOR_WHITE='\e[1;37m'
export COLOR_BLACK='\e[0;30m'
export COLOR_BLUE='\e[0;34m'
export COLOR_LIGHT_BLUE='\e[1;34m'
export COLOR_GREEN='\e[0;32m'
export COLOR_LIGHT_GREEN='\e[1;32m'
export COLOR_CYAN='\e[0;36m'
export COLOR_LIGHT_CYAN='\e[1;36m'
export COLOR_RED='\e[0;31m'
export COLOR_LIGHT_RED='\e[1;31m'
export COLOR_PURPLE='\e[0;35m'
export COLOR_LIGHT_PURPLE='\e[1;35m'
export COLOR_BROWN='\e[0;33m'
export COLOR_YELLOW='\e[1;33m'
export COLOR_GRAY='\e[0;30m'
export COLOR_LIGHT_GRAY='\e[0;37m'
fi;
fi;
function on_error () {
local exit_code=$?
local prog=$BASH_COMMAND
echo -e "\e[1;101;30m\n" 1>&2
echo -en "KICKSTART ERROR: '$prog' (Exit code: $exit_code on ${PROGNAME} line $1) - inspect output above for more information.\n" 1>&2
echo -e "\e[0m" 1>&2
exit 1
}
if [[ "$KICKSTART_HOST_IP" == "" ]]
then
# Autodetect for ubuntu, arch
KICKSTART_HOST_IP=$(ip route list | grep -v default | grep -v linkdown | grep src | tail -1 | awk 'match($0, / [0-9]+\.[0-9]+\.[0-9]+\.[0-9]+/){print substr($0, RSTART+1, RLENGTH-1)}' 2> /dev/null)
fi;
if [[ "$KICKSTART_HOST_IP" == "" ]]
then
# Workaround for systems not supporting hostname -i (MAC)
# See doc/workaround-plattforms.md for more about this
KICKSTART_HOST_IP=$(ping -c 1 $(hostname) | grep icmp_seq | awk 'match($0,/[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+/){print substr($0, RSTART, RLENGTH)}')
fi;
if [[ "$CONTAINER_NAME" == "" ]]
then
CONTAINER_NAME=${PWD##*/}
fi;
KICKSTART_CACHE_DIR="$HOME/.kick_cache"
mkdir -p $KICKSTART_CACHE_DIR
if [ "$DEV_CONTAINER_NAME" != "" ]
then
echo -e $COLOR_RED "\n[ERR] Are you trying to run kickstart.sh from inside a kickstart container?!"
echo "(Detected DEV_CONTAINER_NAME is set in environment)"
echo -e $COLOR_NC
exit 4;
fi;
command -v curl >/dev/null 2>&1 || { echo -e "$COLOR_LIGHT_RED I require curl but it's not installed (run: 'apt-get install curl'). Aborting.$COLOR_NC" >&2; exit 1; }
command -v docker >/dev/null 2>&1 || { echo -e "$COLOR_LIGHT_RED I require docker but it's not installed (see http://docker.io). Aborting.$COLOR_NC" >&2; exit 1; }
_KICKSTART_DOC_URL="https://github.com/infracamp/kickstart/"
_KICKSTART_UPGRADE_URL="https://raw.githubusercontent.com/infracamp/kickstart/master/dist/kickstart.sh"
_KICKSTART_RELEASE_NOTES_URL="https://raw.githubusercontent.com/infracamp/kickstart/master/dist/kickstart-release-notes.txt"
_KICKSTART_VERSION_URL="https://raw.githubusercontent.com/infracamp/kickstart/master/dist/kickstart-release.txt"
_KICKSTART_CURRENT_VERSION="1.2.0"
##
# This variables can be overwritten by ~/.kickstartconfig
#
ask_user() {
echo "";
read -r -p "$1 (y|N)" choice
case "$choice" in
n|N)
echo "Abort!";
;;
y|Y)
return 0;
;;
*)
echo 'Response not valid';;
esac
exit 1;
}
if [ ! -f "$PROGPATH/.kick.yml" ]
then
echo -e $COLOR_RED "[ERR] Missing $PROGPATH/.kick.yml file." $COLOR_NC
ask_user "Do you want to create a new .kick.yml-file?"
echo "# Kickstart container config file - see https://gitub.com/infracamp/kickstart" > $PROGPATH/.kick.yml
echo "# Run ./kickstart.sh to start a development-container for this project" >> $PROGPATH/.kick.yml
echo "version: 1" >> $PROGPATH/.kick.yml
echo 'from: "infracamp/kickstart-flavor-base"' >> $PROGPATH/.kick.yml
echo "command:" >> $PROGPATH/.kick.yml
echo " build:" >> $PROGPATH/.kick.yml
echo " - \"echo 'I am executed on build time'\"" >> $PROGPATH/.kick.yml
echo " init:" >> $PROGPATH/.kick.yml
echo " test:" >> $PROGPATH/.kick.yml
echo " run:" >> $PROGPATH/.kick.yml
echo " dev:" >> $PROGPATH/.kick.yml
echo " - \"echo 'I am executed in dev mode'\"" >> $PROGPATH/.kick.yml
echo "File created. See $_KICKSTART_DOC_URL for more information";
echo ""
echo "You can now run ./kickstart.sh to start the container"
sleep 2
exit 6
fi
# Parse .kick.yml for line from: "docker/container:version"
FROM_IMAGE=`cat $PROGPATH/.kick.yml | grep "^from:" | tr -d '"' | awk '{print $2}'`
if [ "$FROM_IMAGE" == "" ]
then
echo -e $COLOR_RED "[ERR] .kick.yml file does not include 'from:' - directive." $COLOR_NC
exit 2
fi;
if [ -e "$HOME/.kickstartconfig" ]
then
echo "Loading $HOME/.kickstartconfig"
. $HOME/.kickstartconfig
fi
if [ -e "$PROGPATH/.kickstartconfig" ]
then
echo "Loading $PROGPATH/.kickstartconfig (This is risky if you - abort if unsure)"
# @todo Search for .kickstartconfig in gitignore to verify the user wants this.
. $PROGPATH/.kickstartconfig
fi
terminal="-it"
if [ ! -t 1 ]
then
# Switch to non-interactive terminal (ci-build etc)
terminal="-t"
fi;
_usage() {
echo -e $COLOR_NC "Usage: $0 [<arguments>] [<command>]
COMMANDS:
$0 :[command] [command2...]
Execute kick <command> and return (development mode)
$0 ci-build
Build the service and push to gitlab registry (gitlab_ci_runner)
$0 skel list|install [name]
List / Install a skeleton project (see http://github.com/infracamp/kickstart-skel)
$0 skel upgrade
Upgrade to the latest kickstart version
$0 secrets list
List all secrets stored for this project
$0 secrets edit [secret_name]
Edit / create secret
$0 wakeup
Try to start a previous image with same container name (faster startup)
EXAMPLES
$0 Just start a shell inside the container (default development usage)
$0 :test Execute commands defined in section 'test' of .kick.yml
$0 :debug Execute the container in debug-mode (don't execute kick-commands)
ARGUMENTS
-h Show this help
-t, --tag=<tagname> Run container with this tag (development)
-u, --unflavored Run the container whithout running any scripts (develpment)
--offline Do not pull images nor ask for version upgrades
--no-tty Disable interactive tty
-e, --env ENV=value Set environment variables
-v, --volume list Bind mount a volume
-f, --force Restart / kill running containers
-r, --reset Shutdown all services and restart stack services
"
exit 1
}
_print_header() {
echo -e $COLOR_WHITE "
infracamp's
▄█ ▄█▄ ▄█ ▄████████ ▄█ ▄█▄ ▄████████ ███ ▄████████ ▄████████ ███
███ ▄███▀ ███ ███ ███ ███ ▄███▀ ███ ███ ▀█████████▄ ███ ███ ███ ███ ▀█████████▄
███▐██▀ ███▌ ███ █▀ ███▐██▀ ███ █▀ ▀███▀▀██ ███ ███ ███ ███ ▀███▀▀██
▄█████▀ ███▌ ███ ▄█████▀ ███ ███ ▀ ███ ███ ▄███▄▄▄▄██▀ ███ ▀
▀▀█████▄ ███▌ ███ ▀▀█████▄ ▀███████████ ███ ▀███████████ ▀▀███▀▀▀▀▀ ███
███▐██▄ ███ ███ █▄ ███▐██▄ ███ ███ ███ ███ ▀███████████ ███
███ ▀███▄ ███ ███ ███ ███ ▀███▄ ▄█ ███ ███ ███ ███ ███ ███ ███
███ ▀█▀ █▀ ████████▀ ███ ▀█▀ ▄████████▀ ▄████▀ ███ █▀ ███ ███ ▄████▀
▀ ▀ ███ ███
http://infracamp.org happy containers
" $COLOR_YELLOW "
+-------------------------------------------------------------------------------------------------------+
| Infracamp's Kickstart - DEVELOPER MODE |
| Version: $_KICKSTART_CURRENT_VERSION
| Flavour: $FROM_IMAGE (defined in 'from:'-section of .kick.yml)"
KICKSTART_NEWEST_VERSION=`curl -s "$_KICKSTART_VERSION_URL"` || true
if [ "$KICKSTART_NEWEST_VERSION" != "$_KICKSTART_CURRENT_VERSION" ]
then
echo "| "
echo "| UPDATE AVAILABLE: Head Version: $KICKSTART_NEWEST_VERSION"
echo "| To Upgrade Version: Run ./kickstart.sh --upgrade "
echo "| "
sleep 5
fi;
echo "| More information: https://github.com/infracamp/kickstart "
echo "| Or ./kickstart.sh help |"
echo "+-------------------------------------------------------------------------------------------------------+"
}
run_shell() {
echo -e $COLOR_CYAN;
if [ `docker ps | grep "$CONTAINER_NAME\$" | wc -l` -gt 0 ]
then
echo "[kickstart.sh] Container '$CONTAINER_NAME' already running"
choice="s"
if [ "$forceKillContainer" -eq "1" ]
then
choice="r"
else
if [[ "$ARGUMENT" == "" ]]
then
read -r -p "Your choice: (S)hell, (r)estart, (a)bort?" choice
fi
fi;
case "$choice" in
a)
echo "Abort";
exit 0;
;;
r|R)
echo "Restarting container..."
docker kill $CONTAINER_NAME
run_container
exit 0;
;;
s|S|*)
echo "Starting shell... (please press enter)"
echo "";
shellarg="/bin/bash"
if [ "$ARGUMENT" != "" ]
then
shellarg="kick $ARGUMENT"
fi;
echo -e $COLOR_NC;
docker exec $terminal --user $KICKSTART_USER -e "DEV_TTYID=[SUB]" $CONTAINER_NAME $shellarg
echo -e $COLOR_CYAN;
echo "<=== [kickstart.sh] Leaving container."
echo -e $COLOR_NC
exit 0;
;;
esac
fi
echo "[kickstart.s] Another container is already running!"
docker ps
echo ""
choice="k"
if [ "$forceKillContainer" -eq "0" ]
then
read -r -p "Your choice: (i)gnore/run anyway, (d)isable port-exposure and run, (s)hell, (k)ill, (a)bort?: " choice
fi;
case "$choice" in
i|I)
run_container
return 0;
;;
d|D)
echo "Removing port-exposure... (The container will not have any ports exposed!)"
KICKSTART_PORTS="";
;;
s|S)
echo "===> [kickstart.sh] Opening new shell: "
echo -e $COLOR_NC
docker exec $terminal --user $KICKSTART_USER -e "DEV_TTYID=[SUB]" `docker ps | grep "/kickstart/" | cut -d" " -f1` /bin/bash
echo -e $COLOR_CYAN;
echo "<=== [kickstart.sh] Leaving container."
echo -e $COLOR_NC
exit
;;
k|K)
echo "Killing running kickstart containers..."
docker kill `docker ps | grep "/kickstart/" | cut -d " " -f1`
return 0;
;;
*)
echo 'Response not valid'
exit 3;
;;
esac
}
_ci_build() {
echo "CI_BUILD: Building container.. (CI_* Env is preset by gitlab-ci-runner)";
[[ "$CI_REGISTRY" == "" ]] && echo "[Error deploy]: Environment CI_REGISTRY not set" && exit 1;
[[ "$CI_BUILD_NAME" == "" ]] && echo "CI_BUILD_NAME not set - setting default tag to 'latest'" && CI_BUILD_NAME="latest";
local imageName="$CI_REGISTRY_IMAGE:$CI_BUILD_NAME"
CMD="docker build --pull -t $imageName -f ./Dockerfile ."
echo "[Building] Running '$CMD' (MODE1)";
eval $CMD
if [ "$CI_REGISTRY_PASSWORD" != "" ]
then
echo "Logging in to: $CI_REGISTRY_USER @ $CI_REGISTRY"
echo "$CI_REGISTRY_PASSWORD" | docker login --username $CI_REGISTRY_USER --password-stdin $CI_REGISTRY
else
echo "No registry credentials provided in env CI_REGISTRY_PASSWORD - skipping docker login."
fi;
docker push $imageName
echo "Push successful (Image: $imageName)..."
if [ "$CI_BUILD_TAG" != "" ]
then
## For Gitlab CI
local taggedImageName="$CI_REGISTRY_IMAGE:$CI_BUILD_TAG"
echo "CI_BUILD_TAG found: '$CI_BUILD_TAG' - pushing to '$taggedImageName'"
docker tag $imageName $taggedImageName
docker push $taggedImageName
echo "Push successful (Image: $taggedImageName)..."
fi;
exit
}
DOCKER_OPT_PARAMS=$KICKSTART_DOCKER_RUN_OPTS;
# Load .env before evaluating -e command line options
if [ -e "$PROGPATH/.env" ]; then
echo "Adding docker environment from $PROGPATH/.env (Development only)"
DOCKER_OPT_PARAMS="$DOCKER_OPT_PARAMS --env-file $PROGPATH/.env";
elif [ -e "$PROGPATH/.env.dist" ] && [ "$#" == "0" ]; then
echo "An '.env' file is not existing but a '.env.dist' was found."
echo ""
echo "This normally indicates that you have to create a developers .env manually"
echo "in order to start the project."
echo ""
read -r -p "Hit (enter) to continue without .env file or CTRL-C to exit." choice
fi
run_container() {
echo -e $COLOR_GREEN"Loading container '$FROM_IMAGE'..."
if [ "$OFFLINE_MODE" == "0" ]
then
docker pull "$FROM_IMAGE"
else
echo -e $COLOR_RED "OFFLINE MODE! Not pulling image from registy. " $COLOR_NC
fi;
# Ports to be exposed
IFS=';' read -r -a _ports <<< "$KICKSTART_PORTS"
for _port in "${_ports[@]}"
do
DOCKER_OPT_PARAMS="$DOCKER_OPT_PARAMS -p $_port"
done
## Mutliarch support
##imageArchitecture=$( docker image inspect "$FROM_IMAGE" -f '{{.Architecture}}')
isArmImage=$(echo "$FROM_IMAGE" | grep "arm32v7") || true
isX86=$(uname -m | grep "x86") || true
if [ "$isX86" != "" ] && [ "$isArmImage" != '' ]
then
ask_user "You are trying to load arm32 image on x86 architecture. Enable multiarch/qemu?"
docker run --rm --privileged multiarch/qemu-user-static:register --reset --credential yes
fi
if [ "$KICKSTART_WIN_PATH" != "" ]
then
# For Windows users: Rewrite Path of bash to Windows path
# Will work only on drive C:/
PROGPATH="${PROGPATH/\/mnt\/c\//$KICKSTART_WIN_PATH}"
DOCKER_MOUNT_PARAMS="-v $PROGPATH/:/opt/"
fi
docker rm $CONTAINER_NAME || true
echo -e $COLOR_WHITE "==> [$0] STARTING CONTAINER (docker run): Running container in dev-mode..." $COLOR_NC
_STACKFILE="$PROGPATH/.kick-stack.yml"
if [ -e "$_STACKFILE" ]; then
_STACK_NETWORK_NAME=$CONTAINER_NAME
if [ $resetServices -eq 1 ]
then
echo "Reset Services. Leaving swarm..."
docker swarm leave --force
fi;
echo "Startin in stack mode... (network: '$_STACK_NETWORK_NAME')"
_NETWORKS=$(docker network ls | grep $_STACK_NETWORK_NAME | wc -l)
echo nets: $_NETWORKS
if [ $_NETWORKS -eq 0 ]; then
docker swarm init --advertise-addr $KICKSTART_HOST_IP || true
docker network create --attachable -d overlay $_STACK_NETWORK_NAME
fi;
docker stack deploy --prune --with-registry-auth -c $_STACKFILE $CONTAINER_NAME
DOCKER_OPT_PARAMS="$DOCKER_OPT_PARAMS --network $_STACK_NETWORK_NAME"
fi;
dev_uid=$UID
if [ ! -t 1 ]
then
# Switch to non-interactive terminal (ci-build etc)
# For Gitlab Actions: $UID unset (use uid of path)
dev_uid=$(stat -c '%u' $PROGPATH)
fi;
if [ "$dev_uid" -eq "0" ]
then
# Never run a container as root user
# For Gitlab-CI: Gitlab-CI checks out everything world writable but as user root (0) => Set UID to normal user
# (otherwise composer / npm won't install)
dev_uid=1000
fi;
cmd="docker $KICKSTART_DOCKER_OPTS run $terminal \
$DOCKER_MOUNT_PARAMS \
-e \"DEV_CONTAINER_NAME=$CONTAINER_NAME\" \
-e \"DEV_TTYID=[MAIN]\" \
-e \"DEV_UID=$dev_uid\" \
-e \"DOCKER_HOST_IP=$KICKSTART_HOST_IP\" \
-e \"TERM=$TERM\" \
-e \"DEV_MODE=1\" \
$DOCKER_OPT_PARAMS \
--name $CONTAINER_NAME \
$FROM_IMAGE $ARGUMENT"
echo [exec] $cmd
eval $cmd
status=$?
if [[ $status -ne 0 ]]
then
echo -e $COLOR_RED
echo "[kickstart.sh][FAIL]: Container startup failed."
echo -e $COLOR_NC
exit $status
fi;
echo -e $COLOR_WHITE "<== [kickstart.sh] CONTAINER SHUTDOWN"
echo -e $COLOR_RED " Kickstart Exit - Goodbye" $COLOR_NC
exit 0;
}
forceKillContainer=0
ARGUMENT="";
# Parse the command parameters
ARGUMENT="";
resetServices=0;
while [ "$#" -gt 0 ]; do
case "$1" in
-t) USE_PIPF_VERSION="-t $2"; shift 2;;
--tag=*)
USE_PIPF_VERSION="-t ${1#*=}"; shift 1;;
-e|--env) DOCKER_OPT_PARAMS="$DOCKER_OPT_PARAMS -e '$2'"; shift 2;;
-v|--volume) DOCKER_OPT_PARAMS="$DOCKER_OPT_PARAMS -v '$2'"; shift 2;;
-f|--force)
forceKillContainer=1;
shift 1;
;;
-r|--reset)
resetServices=1;
shift 1;
;;
--offline)
OFFLINE_MODE=1; shift 1;;
--no-tty)
echo "Disabling interactive terminal"
terminal=""
shift 1;;
upgrade|--upgrade)
echo "Checking for updates from $_KICKSTART_UPGRADE_URL..."
curl "$_KICKSTART_RELEASE_NOTES_URL"
ask_user "Do you want to upgrade?"
echo "Writing to $0..."
curl "$_KICKSTART_UPGRADE_URL" -o "$0"
echo "Done"
echo "Calling on update trigger: $0 --on-after-update"
$0 --on-after-upgrade
echo -e "$COLOR_GREEN[kickstart.sh] Upgrade successful.$COLOR_NC"
exit 0;;
--on-after-upgrade)
exit 0;;
wakeup)
docker start -ai $CONTAINER_NAME
exit 0;;
skel)
if [ "$2" == "install" ]
then
ask_user "Do you want to overwrite existing files with skeleton?"
curl https://codeload.github.com/infracamp/kickstart-skel/tar.gz/master | tar -xzv --strip-components=2 kickstart-skel-master/$3/ -C ./
exit 0;
fi;
if [ "$2" == "" ] || [ "$2" == "list" ]
then
echo "------ List of available skeleton projects -------"
curl https://raw.githubusercontent.com/infracamp/kickstart-skel/master/skel.index.txt
echo ""
echo "--------------------------------------------------"
echo "Install a skeleton: $0 skel install <name>"
echo "";
else
echo "Unknown command: Available: $0 --skel list|install <name>"
exit 1
fi
exit 0;;
secrets)
secretDir="$HOME/.kickstart/secrets/$CONTAINER_NAME"
mkdir -p $secretDir
[[ "$2" == "list" ]] && echo "Listing secrets from $secretDir:" && ls $secretDir && exit 0;
[[ "$2" != "edit" ]] && echo -e "Error: No secret specified\nUsage: $0 secrets list|edit [<secretname>]" && exit 1;
[[ "$3" == "" ]] && echo -e "Error: No secret specified\nUsage: $0 secrets list|edit [<secretname>]" && exit 1;
secretFile=$secretDir/$3
editor $secretFile
echo "Edit successful: $secretFile"
exit 0;;
ci-build|--ci-build)
_ci_build $2 $3
exit0;;
help|-h|--help)
_usage
exit 0;;
--tag) echo "$1 requires an argument" >&2; exit 1;;
:*)
ARGUMENT="${1:1} ${@:2}"
break;;
-*) echo "unknown option: $1" >&2; exit 1;;
*)
echo "invalid command: $1 - see $0 help for more information" >&2; exit 2;;
esac
done
if [ -e "$HOME/.ssh" ]
then
echo "Mounting $HOME/.ssh..."
DOCKER_OPT_PARAMS="$DOCKER_OPT_PARAMS -v $HOME/.ssh:/home/user/.ssh";
fi
if [ -e "$HOME/.gitconfig" ]
then
echo "Mounting $HOME/.gitconfig..."
DOCKER_OPT_PARAMS="$DOCKER_OPT_PARAMS -v $HOME/.gitconfig:/home/user/.gitconfig";
fi
if [ -e "$HOME/.git-credentials" ]
then
echo "Mounting $HOME/.git-credentials..."
DOCKER_OPT_PARAMS="$DOCKER_OPT_PARAMS -v $HOME/.git-credentials:/home/user/.git-credentials";
fi
if [ -e "$HOME/.bash_history" ]
then
bashHistoryFile="$HOME/.kickstart/bash_history/$CONTAINER_NAME";
echo "Mounting containers bash-history from $bashHistroyFile..."
mkdir -p $(dirname $bashHistoryFile)
touch $bashHistoryFile
DOCKER_OPT_PARAMS="$DOCKER_OPT_PARAMS -v $bashHistoryFile:/home/user/.bash_history";
fi
secretsPath="$HOME/.kickstart/secrets/$CONTAINER_NAME"
echo "Scanning for secrets in $secretsPath";
if [ -e $secretsPath ]
then
for _cur_secret_name in $(find $secretsPath -type f -printf "%f\n")
do
echo "Adding secret from $secretsPath/$_cur_secret_name -> /run/secrets/$_cur_secret_name"
DOCKER_OPT_PARAMS="$DOCKER_OPT_PARAMS -v '$secretsPath/$_cur_secret_name:/run/secrets/$_cur_secret_name' "
done;
fi;
echo "Scanning env for KICKSECRET_*";
for secret in $(env | grep ^KICKSECRET | sed 's/KICKSECRET_\([a-zA-Z0-9_]\+\).*/\1/'); do
secretName="KICKSECRET_$secret"
secretFile="/tmp/.kicksecret.$secretName"
echo ${!secretName} > $secretFile
echo "+ adding secret from env: $secretName > /run/secrets/$secret";
DOCKER_OPT_PARAMS="$DOCKER_OPT_PARAMS -v '$secretFile:/run/secrets/$secret' "
done;
DOCKER_OPT_PARAMS="$DOCKER_OPT_PARAMS -v $KICKSTART_CACHE_DIR:/mnt/.kick_cache"
_print_header
if [ `docker ps | grep "/kickstart/" | wc -l` -gt 0 ]
then
run_shell
fi;
run_container