Skip to content

Commit b3b41fb

Browse files
committed
added tests/docker/registry-docker-compose.yml
1 parent 9d3b11d commit b3b41fb

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)