mirror of
https://github.com/docker/docs.git
synced 2026-03-29 23:38:56 +07:00
The concurrent.futures backport doesn't play well with KeyboardInterrupt, so I'm using Thread and Queue instead. Since thread pooling would likely be a pain to implement, I've just removed `COMPOSE_MAX_WORKERS` for now. We'll implement it later if we decide we need it. Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
9 lines
317 B
Python
9 lines
317 B
Python
|
|
DEFAULT_TIMEOUT = 10
|
|
LABEL_CONTAINER_NUMBER = 'com.docker.compose.container-number'
|
|
LABEL_ONE_OFF = 'com.docker.compose.oneoff'
|
|
LABEL_PROJECT = 'com.docker.compose.project'
|
|
LABEL_SERVICE = 'com.docker.compose.service'
|
|
LABEL_VERSION = 'com.docker.compose.version'
|
|
LABEL_CONFIG_HASH = 'com.docker.compose.config-hash'
|