From ffa2a169ea98fb54a29d90ca158059e79e2816ba Mon Sep 17 00:00:00 2001 From: Carlos Konstanski Date: Mon, 13 Nov 2017 16:50:55 -0700 Subject: initial commit --- files/docker-compose.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 files/docker-compose.yaml (limited to 'files/docker-compose.yaml') 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 -- cgit v1.3