Patrick Williams | d849ec7 | 2016-08-17 14:59:38 -0500 | [diff] [blame] | 1 | # The Docker registry configuration file |
| 2 | DOCKER_REGISTRY_CONFIG=/etc/docker-registry.yml |
| 3 | |
| 4 | # The configuration to use from DOCKER_REGISTRY_CONFIG file |
| 5 | SETTINGS_FLAVOR=local |
| 6 | |
| 7 | # Address to bind the registry to |
| 8 | REGISTRY_ADDRESS=0.0.0.0 |
| 9 | |
| 10 | # Port to bind the registry to |
| 11 | REGISTRY_PORT=5000 |
| 12 | |
| 13 | # Number of workers to handle the connections |
| 14 | GUNICORN_WORKERS=4 |
| 15 | |
| 16 | STANDALONE=true |
| 17 | |
| 18 | MIRROR_SOURCE=https://registry-1.docker.io |
| 19 | MIRROR_SOURCE_INDEX=https://index.docker.io |