Class: Docker::Network
- Inherits:
-
Object
show all
- Includes:
- Base
- Defined in:
- lib/docker/network.rb
Overview
This class represents a Docker Network.
Instance Attribute Summary
Attributes included from Base
#connection, #id, #info
Class Method Summary
collapse
Instance Method Summary
collapse
Methods included from Base
#initialize, #normalize_hash
Class Method Details
.all(opts = {}, conn = Docker.connection) ⇒ Object
61
62
63
64
|
# File 'lib/docker/network.rb', line 61
def all(opts = {}, conn = Docker.connection)
hashes = Docker::Util.parse_json(conn.get('/networks', opts)) || []
hashes.map { |hash| new(conn, hash) }
end
|
.create(name, opts = {}, conn = Docker.connection) ⇒ Object
45
46
47
48
49
50
51
52
53
|
# File 'lib/docker/network.rb', line 45
def create(name, opts = {}, conn = Docker.connection)
default_opts = MultiJson.dump({
'Name' => name,
'CheckDuplicate' => true
}.merge(opts))
resp = conn.post('/networks/create', {}, body: default_opts)
response_hash = Docker::Util.parse_json(resp) || {}
get(response_hash['Id'], {}, conn) || {}
end
|
.get(id, opts = {}, conn = Docker.connection) ⇒ Object
55
56
57
58
59
|
# File 'lib/docker/network.rb', line 55
def get(id, opts = {}, conn = Docker.connection)
network_json = conn.get("/networks/#{id}", opts)
hash = Docker::Util.parse_json(network_json) || {}
new(conn, hash)
end
|
.prune(conn = Docker.connection) ⇒ Object
72
73
74
75
|
# File 'lib/docker/network.rb', line 72
def prune(conn = Docker.connection)
conn.post("/networks/prune", {})
nil
end
|
.remove(id, opts = {}, conn = Docker.connection) ⇒ Object
Also known as:
delete
66
67
68
69
|
# File 'lib/docker/network.rb', line 66
def remove(id, opts = {}, conn = Docker.connection)
conn.delete("/networks/#{id}", opts)
nil
end
|
Instance Method Details
#connect(container, opts = {}, body_opts = {}) ⇒ Object
7
8
9
10
11
12
13
|
# File 'lib/docker/network.rb', line 7
def connect(container, opts = {}, body_opts = {})
body = MultiJson.dump({ container: container }.merge(body_opts))
Docker::Util.parse_json(
connection.post(path_for('connect'), opts, body: body)
)
reload
end
|
#delete ⇒ Object
27
28
29
30
|
# File 'lib/docker/network.rb', line 27
def remove(opts = {})
connection.delete(path_for, opts)
nil
end
|
#disconnect(container, opts = {}) ⇒ Object
15
16
17
18
19
20
21
|
# File 'lib/docker/network.rb', line 15
def disconnect(container, opts = {})
body = MultiJson.dump(container: container)
Docker::Util.parse_json(
connection.post(path_for('disconnect'), opts, body: body)
)
reload
end
|
#json(opts = {}) ⇒ Object
29
30
31
|
# File 'lib/docker/network.rb', line 29
def json(opts = {})
Docker::Util.parse_json(connection.get(path_for, opts))
end
|
#reload ⇒ Object
38
39
40
41
42
|
# File 'lib/docker/network.rb', line 38
def reload
network_json = @connection.get("/networks/#{@id}")
hash = Docker::Util.parse_json(network_json) || {}
@info = hash
end
|
#remove(opts = {}) ⇒ Object
23
24
25
26
|
# File 'lib/docker/network.rb', line 23
def remove(opts = {})
connection.delete(path_for, opts)
nil
end
|
#to_s ⇒ Object
33
34
35
36
|
# File 'lib/docker/network.rb', line 33
def to_s
"Docker::Network { :id => #{id}, :info => #{info.inspect}, "\
":connection => #{connection} }"
end
|