From 36e616271b97709e6632ee6b61e76ab108eabd0f Mon Sep 17 00:00:00 2001 From: Michael Peter Christen Date: Tue, 1 Dec 2020 02:18:08 +0100 Subject: do better documentation on how to set a default password --- docker/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'docker') diff --git a/docker/Dockerfile b/docker/Dockerfile index 929cb6b9f..d8f19c7d5 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -35,6 +35,7 @@ RUN apt-get update && \ RUN \ # Set initial admin password : "docker" (encoded with custom yacy md5 function net.yacy.cora.order.Digest.encodeMD5Hex()) +# > java -classpath classes net.yacy.cora.order.Digest -strfhex "admin:The YaCy access is limited to administrators. If you don't know the password, you can change it using /bin/passwd.sh :docker" sed -i "/adminAccountBase64MD5=/c\adminAccountBase64MD5=MD5:e672161ffdce91be4678605f4f4e6786" /opt/yacy_search_server/defaults/yacy.init && \ # Intially enable HTTPS : this is the most secure option for remote administrator authentication sed -i "/server.https=false/c\server.https=true" /opt/yacy_search_server/defaults/yacy.init && \ @@ -46,7 +47,7 @@ RUN \ # Expose HTTP and HTTPS default ports EXPOSE 8090 8443 -# Set data volume : yacy data and configuration will persist aven after container stop or destruction +# Set data volume : yacy data and configuration will persist even after container stop or destruction VOLUME ["/opt/yacy_search_server/DATA"] # Next commands run as yacy as non-root user for improved security -- cgit v1.2.3