GITLAB
hmalti
/
projet_gestion_containers
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Issues
0
Merge Requests
0
Wiki
Download as
Email Patches
Plain Diff
Browse Code ยป
Commit
92cadb30c0a1ed86d025aabb9824c7ef7508c8bd
Authored by
hmalti
2019-05-09 19:19:22 +0200
1 parent
0e551703
Suppresion flag debug
Showing
2 changed files
with
0 additions
and
3 deletions
Show diff stats
create_container.sh
remove_container.sh
Inline
Side-by-side
create_container.sh
Wrap text
Show/Hide comments
View file @
92cadb3
1
1
#!/bin/bash
2
-set -x
3
-
4
2
while getopts i:c:b:r:a:p: o; do
5
3
case $o in
6
4
(i) NOM_IMAGE=$OPTARG;;
...
...
remove_container.sh
Wrap text
Show/Hide comments
View file @
92cadb3
1
1
#!/bin/bash
2
-set -x
3
2
while getopts c: o; do
4
3
case $o in
5
4
(c) NAME_CONTAINER_TO_REMOVE=$OPTARG;;
...
...