We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d3b11d commit b3b41fbCopy full SHA for b3b41fb
tests/docker/registry-docker-compose.yml
@@ -0,0 +1,27 @@
1
+# vim:ts=2:sts=2:sw=2:et
2
+#
3
+# Author: Hari Sekhon
4
+# Date: 2017-09-12 17:27:50 +0200 (Tue, 12 Sep 2017)
5
6
+# https://github.com/harisekhon/pytools
7
8
+# License: see accompanying Hari Sekhon LICENSE file
9
10
+# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
11
12
+# https://www.linkedin.com/in/harisekhon
13
14
+
15
+version: '2.2'
16
17
+services:
18
+ pytools-registry-test:
19
+ image: registry:2
20
+ ports:
21
+ - 5000:5000
22
+ environment:
23
+ - REGISTRY_HTTP_ADDR=0.0.0.0:5000
24
+ - REGISTRY_HTTP_TLS_CERTIFICATE=/certs/registry.crt
25
+ - REGISTRY_HTTP_TLS_KEY=/certs/registry.key
26
+ volumes:
27
+ - .:/certs
0 commit comments