diff options
| author | Carlos Konstanski <ckonstanski@pippiandcarlos.com> | 2017-11-13 16:50:55 -0700 |
|---|---|---|
| committer | Carlos Konstanski <ckonstanski@pippiandcarlos.com> | 2017-11-13 16:50:55 -0700 |
| commit | ffa2a169ea98fb54a29d90ca158059e79e2816ba (patch) | |
| tree | 018461d031b71178fa48b9672d8e39bac4de1270 /files/docker-compose.yaml | |
initial commit
Diffstat (limited to 'files/docker-compose.yaml')
| -rw-r--r-- | files/docker-compose.yaml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/files/docker-compose.yaml b/files/docker-compose.yaml new file mode 100644 index 0000000..48f5b6e --- /dev/null +++ b/files/docker-compose.yaml @@ -0,0 +1,17 @@ +nginx: + image: "nginx:1.9" + ports: + - 443:443 + links: + - registry:registry + volumes: + - ./nginx/:/etc/nginx/conf.d:ro +registry: + image: registry:2 + ports: + - 127.0.0.1:5000:5000 + environment: + REGISTRY_STORAGE_FILESYSTEM_ROOTDIRECTORY: /data + REGISTRY_STORAGE_DELETE_ENABLED: "true" + volumes: + - ./data:/data |
