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
26f2b696
Kaydet (Commit)
26f2b696
authored
May 18, 2016
tarafından
Joffrey F
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #1068 from jgiannuzzi/internal_networks
Add support for creating internal networks
üst
966dfac3
98b41fee
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
1 deletion
+21
-1
network.py
docker/api/network.py
+8
-1
networks.md
docs/networks.md
+7
-0
network_test.py
tests/integration/network_test.py
+6
-0
No files found.
docker/api/network.py
Dosyayı görüntüle @
26f2b696
...
...
@@ -22,7 +22,7 @@ class NetworkApiMixin(object):
@minimum_version
(
'1.21'
)
def
create_network
(
self
,
name
,
driver
=
None
,
options
=
None
,
ipam
=
None
,
check_duplicate
=
None
):
check_duplicate
=
None
,
internal
=
False
):
if
options
is
not
None
and
not
isinstance
(
options
,
dict
):
raise
TypeError
(
'options must be a dictionary'
)
...
...
@@ -33,6 +33,13 @@ class NetworkApiMixin(object):
'IPAM'
:
ipam
,
'CheckDuplicate'
:
check_duplicate
}
if
internal
:
if
version_lt
(
self
.
_version
,
'1.22'
):
raise
InvalidVersion
(
'Internal networks are not '
'supported in API version < 1.22'
)
data
[
'Internal'
]
=
True
url
=
self
.
_url
(
"/networks/create"
)
res
=
self
.
_post_json
(
url
,
data
=
data
)
return
self
.
_result
(
res
,
json
=
True
)
...
...
docs/networks.md
Dosyayı görüntüle @
26f2b696
...
...
@@ -18,3 +18,10 @@ ipam_config = docker.utils.create_ipam_config(subnet='192.168.52.0/24', gateway=
docker_client
.
create_network
(
"network1"
,
driver
=
"bridge"
,
ipam
=
ipam_config
)
```
With Docker 1.10 you can now also create internal networks
```
python
docker_client
.
create_network
(
"network1"
,
driver
=
"bridge"
,
internal
=
True
)
```
tests/integration/network_test.py
Dosyayı görüntüle @
26f2b696
...
...
@@ -298,3 +298,9 @@ class TestNetworks(helpers.BaseTestCase):
self
.
assertEqual
(
net_data
[
'IPAMConfig'
][
'IPv6Address'
],
'2001:389::f00d'
)
@requires_api_version
(
'1.23'
)
def
test_create_internal_networks
(
self
):
_
,
net_id
=
self
.
create_network
(
internal
=
True
)
net
=
self
.
client
.
inspect_network
(
net_id
)
assert
net
[
'Internal'
]
is
True
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