You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
616 B

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. FROM jboss/wildfly:11.0.0.Final
  2. # Environment variable with default value
  3. ENV WF_CONFIG="standalone.xml"
  4. #for session persistance using
  5. ENV SESSIONDB_HOST='localhost:3306' SESSIONDB_NAME='wf_sessions' SESSIONDB_USER='session' SESSIONDB_PASS='session'
  6. LABEL maintainer="richard_shih@wanhai.com"
  7. #prepare tmp dir
  8. COPY --chown=jboss . ${JBOSS_HOME}/config
  9. #customize modules
  10. RUN cd ${JBOSS_HOME}/config/modules && ./make_modules.sh
  11. #customize settings
  12. RUN cd ${JBOSS_HOME}/config/initial && ./setup.sh
  13. #cleanup
  14. RUN rm -rf ${JBOSS_HOME}/config
  15. EXPOSE 8080 9990
  16. CMD ["sh","-c","/opt/jboss/wildfly/bin/startwf.sh"]