paulosales / docker-jboss-eap

Jboss EAP Docker imagens

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jboss-eap

Jboss EAP Docker imagens

Supported tags and respective Dockerfile links

Usage

Command line

docker run -p 8080:8080 -p 9990:9990 -p 8443:8443 -d prsales/jboss-eap:7.3-alpine

Docker composer

version: '3.1'

services:
  jboss:
    image: prsales/jboss-eap:7.2.0-alpine
    restart: always
    environment:
      ADMIN_USER: admin
      ADMIN_PASSWORD: admin
    volumes:
      - ./standalone.xml:/home/jboss/jboss-eap-7.2/standalone/configuration/standalone.xml
    ports:
      - 8080:8080
      - 9990:9990

The web application and the management console will be available in http://localhost:8080 and http://localhost:9990

The default management user and password

The default management username is admin and his password is Admin.123. You can customize these by the respective environments variables ADMIN_USER and ADMIN_PASSWORD like that:

docker run -p 8080:8080 -p 9990:9990 -p 8443:8443 -e ADMIN_USER="master" -e ADMIN_PASSWORD="passwd" -d prsales/jboss-eap:7.3-alpine

The optional application user and password

Optionally, you can specify the application user and password to ApplicationRealm. You can do this by setting the environment variables APP_USER, APP_PASSWORD, and APP_USER_ROLE.

JBOSS configuration

You can use Docker volumes configure Jboss-EAP standalone.xml file.

The Jboss configuration file can be found at directory /home/jboss/jboss-eap-<JBOSS_VERSION>/standalone/configuration/standalone.xml

About

Jboss EAP Docker imagens


Languages

Language:Dockerfile 88.1%Language:Shell 11.9%