Permalink
Cannot retrieve contributors at this time
11 lines (11 sloc)
581 Bytes
|
FROM wildfly |
|
MAINTAINER Bartosz Kamiński, http://highcohesionloosecoupling.com |
|
RUN rm ${WILDFLY_HOME}/bin/standalone.conf \ |
|
&& ${WILDFLY_HOME}/bin/add-user.sh admin admin --silent |
|
ADD standalone.conf ${WILDFLY_HOME}/bin/ |
|
COPY docker-entrypoint-initmw.d/ /docker-entrypoint-initmw.d/ |
|
COPY initWildfly.sh /docker-entrypoint-initmw.d/initWildfly.sh |
|
RUN chmod +x /docker-entrypoint-initmw.d/initWildfly.sh \ |
|
&& /docker-entrypoint-initmw.d/initWildfly.sh |
|
ENTRYPOINT ${WILDFLY_HOME}/bin/standalone.sh -c standalone-full.xml -b=0.0.0.0 -bmanagement=0.0.0.0 |
|
EXPOSE 8080 8787 9990 7091 |
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.