swarmkit icon indicating copy to clipboard operation
swarmkit copied to clipboard

A toolkit for orchestrating distributed systems at any scale. It includes primitives for node discovery, raft-based consensus, task scheduling and more.

Results 133 swarmkit issues
Sort by recently updated
recently updated
newest added

Add `Unwrap() error` to custom error types to work with standard library

Dear team, Design question. Current `Context` implementation in [context.go](https://github.com/moby/swarmkit/blob/master/template/context.go) populates the "variable namespace" with identifiers like `.Service.ID`, `.Node.ID` etc which are _locally-scoped_, e.g. they describe service, task or local node....

``` services: foo: image: ubuntu volumes: - type: volume source: bar volume: { subpath: baz } target: /baz ``` From https://github.com/moby/swarmkit/blob/master/swarmd/dockerexec/container.go#L338-L343: ``` if m.VolumeOptions != nil { mount.VolumeOptions = &enginemount.VolumeOptions{...