This website works better with JavaScript.
Home
Explore
Help
Sign In
kris
/
qrtesting
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
pq-t2: for TLS 1.3 only
keep-around/e1c87b9df7a780be8560289dd8a2cb2b779cf097
Kris
6 years ago
committed by
Kris Kwiatkowski
parent
b9705e4cdd
commit
02213c7767
3 changed files
with
17 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+8
-0
images/pq-t2/Dockerfile
+9
-0
images/pq-t2/Makefile
BIN
+ 8
- 0
images/pq-t2/Dockerfile
View File
@@ -0,0 +1,8 @@
FROM buildpack-deps
EXPOSE 443
ADD certs/privkey.pem /
ADD certs/fullchain.pem /
ADD bin/server /
CMD [ "/server", "-b", "0.0.0.0:443", "-qr", "-cert", "/privkey.pem:/fullchain.pem" ]
+ 9
- 0
images/pq-t2/Makefile
View File
@@ -0,0 +1,9 @@
NAME=pq-t2
PORT=50511
build:
docker build -t ${NAME} .
run:
docker run --detach --restart always --name ${NAME} -p ${PORT}:443 ${NAME}
restart:
docker restart ${NAME}
BIN
View File
Write
Preview
Loading…
Cancel
Save