Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
docker-py
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
docker-py
Commits
f99dc45d
Kaydet (Commit)
f99dc45d
authored
Agu 01, 2016
tarafından
Joffrey F
Kaydeden (comit)
GitHub
Agu 01, 2016
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #1146 from aanand/config-path-debug
More explicit debug for config path logic
üst
8a6b1843
f006da6a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
auth.py
docker/auth/auth.py
+9
-4
No files found.
docker/auth/auth.py
Dosyayı görüntüle @
f99dc45d
...
...
@@ -160,18 +160,24 @@ def find_config_file(config_path=None):
os
.
path
.
basename
(
DOCKER_CONFIG_FILENAME
)
)
if
os
.
environ
.
get
(
'DOCKER_CONFIG'
)
else
None
paths
=
[
paths
=
filter
(
None
,
[
config_path
,
# 1
environment_path
,
# 2
os
.
path
.
join
(
os
.
path
.
expanduser
(
'~'
),
DOCKER_CONFIG_FILENAME
),
# 3
os
.
path
.
join
(
os
.
path
.
expanduser
(
'~'
),
LEGACY_DOCKER_CONFIG_FILENAME
)
# 4
]
])
log
.
debug
(
"Trying paths: {0}"
.
format
(
repr
(
paths
)))
for
path
in
paths
:
if
path
and
os
.
path
.
exists
(
path
):
if
os
.
path
.
exists
(
path
):
log
.
debug
(
"Found file at path: {0}"
.
format
(
path
))
return
path
log
.
debug
(
"No config file found"
)
return
None
...
...
@@ -186,7 +192,6 @@ def load_config(config_path=None):
config_file
=
find_config_file
(
config_path
)
if
not
config_file
:
log
.
debug
(
"File doesn't exist"
)
return
{}
try
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment