We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Por default (https://github.com/docker-library/tomcat/blob/master/8.0/jre8/Dockerfile) tomcat está ejecutando como root, lo cual es desaconsejado por tomcat (https://tomcat.apache.org/tomcat-8.0-doc/security-howto.html#Non-Tomcat_settings) En el https://github.com/iammyr/docs/blob/3e99a347971cfa337a1a175bf24ad792342b86be/tomcat/content.md#hardening-tomcat-security se muestra cómo asegurar la instalación de tomcat de acuerdo a las recomendaciones de tomcat. Mas info:
The text was updated successfully, but these errors were encountered:
Sería algo así
RUN umask 007 RUN rm -rf $CATALINA_HOME/webapps/* && \ chown -R root:tomcat8 $CATALINA_HOME && chmod -R 640 $CATALINA_HOME && chmod -R ug+X $CATALINA_HOME && \ chown -R tomcat8:tomcat8 $CATALINA_HOME/logs $CATALINA_HOME/work $CATALINA_HOME/temp && \ chmod -R g+rw $CATALINA_HOME/webapps/ && chmod ug+x $CATALINA_HOME/bin/catalina.sh
Sorry, something went wrong.
No branches or pull requests
Por default (https://github.com/docker-library/tomcat/blob/master/8.0/jre8/Dockerfile) tomcat está ejecutando como root, lo cual es desaconsejado por tomcat (https://tomcat.apache.org/tomcat-8.0-doc/security-howto.html#Non-Tomcat_settings)
En el https://github.com/iammyr/docs/blob/3e99a347971cfa337a1a175bf24ad792342b86be/tomcat/content.md#hardening-tomcat-security se muestra cómo asegurar la instalación de tomcat de acuerdo a las recomendaciones de tomcat.
Mas info:
The text was updated successfully, but these errors were encountered: