mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2025-06-12 03:07:42 +02:00
Merge pull request #1344 from erik-wramner/fix_1336_docker_inspect
Only use docker inspect with container name #1336
This commit is contained in:
commit
f69d30f62a
4
setup.sh
4
setup.sh
@ -36,9 +36,11 @@ DEFAULT_CONFIG_PATH="$(pwd)/config"
|
|||||||
USE_CONTAINER=false
|
USE_CONTAINER=false
|
||||||
|
|
||||||
_update_config_path() {
|
_update_config_path() {
|
||||||
VOLUME=$($CRI inspect $CONTAINER_NAME \
|
if [ ! -z "$CONTAINER_NAME" ]; then
|
||||||
|
VOLUME=$(docker inspect $CONTAINER_NAME \
|
||||||
--format="{{range .Mounts}}{{ println .Source .Destination}}{{end}}" | \
|
--format="{{range .Mounts}}{{ println .Source .Destination}}{{end}}" | \
|
||||||
grep "/tmp/docker-mailserver$" 2>/dev/null)
|
grep "/tmp/docker-mailserver$" 2>/dev/null)
|
||||||
|
fi
|
||||||
|
|
||||||
if [ ! -z "$VOLUME" ]; then
|
if [ ! -z "$VOLUME" ]; then
|
||||||
CONFIG_PATH=$(echo $VOLUME | awk '{print $1}')
|
CONFIG_PATH=$(echo $VOLUME | awk '{print $1}')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user