github.com/moby/docker@v26.1.3+incompatible/libnetwork/scope/scope.go (about)

     1  package scope
     2  
     3  // Data scopes.
     4  const (
     5  	// Local indicates to store the KV object in local datastore such as boltdb
     6  	Local = "local"
     7  	// Global indicates to store the KV object in global datastore
     8  	Global = "global"
     9  	// Swarm is not indicating a datastore location. It is defined here
    10  	// along with the other two scopes just for consistency.
    11  	Swarm = "swarm"
    12  )