Commit f4b7c9cd797716f0400d8f6836d3ebea48cb1bec
1 parent
7aa0dc74
Exists in
master
and in
1 other branch
adaptation scripts INSTALLATION et UPDATE
Showing
2 changed files
with
27 additions
and
0 deletions
Show diff stats
INSTALLATION
1 | 1 | #!/usr/bin/env bash |
2 | 2 | |
3 | +# Si execution directe depuis le repertoire data/ (bind du repertoire docker) | |
4 | +# => on rappelle ce meme script avec le CLI docker puis on exit | |
5 | +[ -f ../DOCKER_LABINVENT_START ] && docker exec -it labinvent $0 | |
6 | +[ -f ../DOCKER_LABINVENT_START ] && exit | |
7 | +# Execution SANS docker, ou bien AVEC docker depuis le conteneur | |
8 | +echo "IN $(pwd)" | |
9 | + | |
10 | + | |
11 | + | |
12 | + | |
13 | + | |
14 | + | |
15 | + | |
16 | + | |
3 | 17 | cd install/ |
4 | 18 | ./installation.sh | ... | ... |
UPDATE
... | ... | @@ -2,6 +2,19 @@ |
2 | 2 | |
3 | 3 | # $1 : Option "-c" pour CLEAN du fichier ftpf |
4 | 4 | |
5 | +# Si execution directe depuis le repertoire data/ (bind du repertoire docker) | |
6 | +# => on rappelle ce meme script avec le CLI docker puis on exit | |
7 | +[ -f ../DOCKER_LABINVENT_START ] && docker exec -it labinvent $0 $1 | |
8 | +[ -f ../DOCKER_LABINVENT_START ] && exit | |
9 | +# Execution SANS docker, ou bien AVEC docker depuis le conteneur | |
10 | +echo "IN $(pwd)" | |
11 | + | |
12 | + | |
13 | + | |
14 | + | |
15 | + | |
16 | + | |
17 | + | |
5 | 18 | cd install/ |
6 | 19 | ./update.sh $1 |
7 | 20 | ... | ... |