pq-t2: for TLS 1.3 only
This commit is contained in:
父節點
b9705e4cdd
當前提交
02213c7767
8
images/pq-t2/Dockerfile
Normal file
8
images/pq-t2/Dockerfile
Normal 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
images/pq-t2/Makefile
Normal file
9
images/pq-t2/Makefile
Normal 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}
|
二進制
images/pq-t2/bin/server
Executable file
二進制
images/pq-t2/bin/server
Executable file
Binary file not shown.
Loading…
Reference in New Issue
Block a user