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
790d7525
Kaydet (Commit)
790d7525
authored
Tem 11, 2016
tarafından
Tomas Tomecek
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
document how to recover from api version mismatch
Signed-off-by:
Tomas Tomecek
<
ttomecek@redhat.com
>
üst
b65de73a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
0 deletions
+29
-0
api.md
docs/api.md
+28
-0
mkdocs.yml
mkdocs.yml
+1
-0
No files found.
docs/api.md
Dosyayı görüntüle @
790d7525
...
...
@@ -18,6 +18,34 @@ is hosted.
*
tls (bool or
[
TLSConfig
](
tls.md#TLSConfig
)
): Equivalent CLI options:
`docker --tls ...`
*
user_agent (str): Set a custom user agent for requests to the server.
## Version mismatch
You may encounter an error like this:
```
text
client is newer than server (client API version: 1.24, server API version: 1.23)
```
To fix this, you have to either supply exact version to
`Client`
which you know that server supports:
```
python
client
=
docker
.
Client
(
version
=
"1.23"
)
```
or let client pick the newest version server supports:
```
python
client
=
docker
.
Client
(
version
=
"auto"
)
```
or even
```
python
client
=
docker
.
AutoVersionClient
()
```
****
## attach
...
...
mkdocs.yml
Dosyayı görüntüle @
790d7525
...
...
@@ -7,6 +7,7 @@ theme: readthedocs
pages
:
-
Home
:
index.md
-
Client API
:
api.md
-
FAQ
:
faq.md
-
Port Bindings
:
port-bindings.md
-
Using Volumes
:
volumes.md
-
Using TLS
:
tls.md
...
...
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