pull/35/head
Alec Muffett 2019-02-08 18:31:01 +00:00
rodzic 0d5b0a1f9a
commit a69330946f
2 zmienionych plików z 6 dodań i 4 usunięć

Wyświetl plik

@ -335,7 +335,7 @@ sub DoProject {
$cert = "$ENV{SSL_DIR}/$cert_prefix.cert";
if (-f $cert) {
warn "$cert exists!";
}
} # TODO: if the cert is already in the secrets.d directory, use it
else {
warn "making cert for $cert_prefix\n";
&GoAndRun(

Wyświetl plik

@ -1,9 +1,11 @@
# Development dockerfile for EOTK
# EOTK will be downloaded and setup ready-to-run without root privileges
# To build, run: docker build -t eotk .
# To run the newly-built container:
# docker run -it --cap-drop=all --name eotk eotk
# To build:
# docker build --tag eotk-image .
# To run:
# docker run -it --cap-drop=all --name eotk-container eotk-image
# credit:
# v1 Alex Haydock <alex@alexhaydock.co.uk>