Skip to content

Commit 29e4ec4

Browse files
committed
enable local image store
1 parent 6b052fa commit 29e4ec4

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

docker-compose.yaml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
# This starts a local image store serve metal-hammer develop purpose.
3+
# it also echo´s metal-hammer rest calls to make them succeed and visible.
4+
version: '3'
5+
services:
6+
imagestore:
7+
image: nginx:latest
8+
ports:
9+
- "4711:80"
10+
volumes:
11+
- .:/usr/share/nginx/html:ro
12+
echoserver:
13+
image: mendhak/http-https-echo
14+
ports:
15+
- "4712:80"
16+

0 commit comments

Comments
 (0)