github.com/tonistiigi/docker@v0.10.1-0.20240229224939-974013b0dc6a/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  )