forked from elhmn/ac-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker_utils.sh
23 lines (20 loc) · 1.07 KB
/
docker_utils.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# ************************************************************************** #
# #
# docker_utils.sh #
# #
# By: elhmn <www.elhmn.com> #
# <[email protected]> #
# #
# Created: by elhmn #
# Updated: Wed Sep 05 11:24:01 2018 by bmbarga #
# #
# ************************************************************************** #
#!/bin/sh
get_container_name()
{
docker container inspect $1 | grep \"name\" | sed 's/".*".*:.*"\(.*\)".*/\1/g' | sed 's/[ $]//g'
}
get_container_hash()
{
docker container ps | cut -d ' ' -f 1 | sed 's/^[A-Z]*$//g'
}