Created
January 9, 2024 06:11
-
-
Save webnitros/b6273b680f8eb433dfefea3cb8965dc9 to your computer and use it in GitHub Desktop.
Проверка что пользователь авторизован в Docker registry
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Получаем информацию о Docker | |
docker_info=$(docker info) | |
# Проверяем, содержится ли информация о Swarm.NodeID (это может указывать на неполный вывод info) | |
if echo "$docker_info" | grep -q "Swarm.NodeID"; then | |
echo "Пользователь не авторизован в Docker." | |
else | |
# Получаем имя пользователя | |
username=$(echo "$docker_info" | grep -oP '(?<=Username: )(\S+)') | |
# Проверяем, авторизован ли пользователь | |
if [ -n "$username" ]; then | |
echo "Пользователь $username авторизован в Docker." | |
else | |
echo "Пользователь не авторизован в Docker." | |
fi | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment