Dashbuilder dev mode docker file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM quay.io/wsiqueir/dashbuilder-runtime:latest | |
# adds default admin user | |
RUN /opt/jboss/wildfly/bin/add-user.sh -a -u 'admin' -p 'admin' -g 'admin' | |
ENV LANG en_US.UTF-8 | |
# run as root to avoid file permission issues | |
USER root | |
CMD ["/opt/jboss/wildfly/bin/standalone.sh", "-b", "0.0.0.0", "-Ddashbuilder.runtime.multi=true", "-Ddashbuilder.dev=true", "-Dfile.encoding=UTF-8" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment