pq-t2: for TLS 1.3 only
This commit is contained in:
parent
6bc0509611
commit
9b9d3f7b2a
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}
|
BIN
images/pq-t2/bin/server
Executable file
BIN
images/pq-t2/bin/server
Executable file
Binary file not shown.
Loading…
Reference in New Issue
Block a user