From 4f189611318b29ded061d382c4e0aaa2bed47658 Mon Sep 17 00:00:00 2001 From: Kris Date: Sun, 19 Aug 2018 21:07:56 +0000 Subject: [PATCH] pq-t2: copy certificates --- images/pq-t2/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/images/pq-t2/Makefile b/images/pq-t2/Makefile index 9fef005..ed10a42 100644 --- a/images/pq-t2/Makefile +++ b/images/pq-t2/Makefile @@ -1,6 +1,9 @@ NAME=pq-t2 PORT=50511 build: + mkdir -p certs + cp ../../cert/fullchain.pem certs/ + cp ../../cert/privkey.pem certs/ docker build -t ${NAME} . run: docker run --detach --restart always --name ${NAME} -p ${PORT}:443 ${NAME}