GithubHelp home page GithubHelp logo

ernyoke / docker-glassfish Goto Github PK

View Code? Open in Web Editor NEW

This project forked from koert/docker-glassfish

1.0 2.0 1.0 25 KB

Simple docker image to run a Glassfish server

License: Apache License 2.0

Shell 69.96% Dockerfile 30.04%

docker-glassfish's Introduction

docker-glassfish

Docker image to run a Glassfish 5.0.1 application server.

Usage

To create the image glassfish-5.0.1, execute the following command on the docker-glassfish folder:

docker build -t ernyoke/glassfish-5.0.1 .

To run the image and bind to port :

docker run -d -p 4848:4848 -p 8080:8080 -p 8181:8181 -p 9009:9009 ernyoke/glassfish-5.0.1

PS: 4848 (for administration), 8080 (for the HTTP listener), and 8181 (for the HTTPS listener), and 9009 (for tcp jpda debug)

The first time that you run your container, a new user admin with all privileges will be created in Glassfish with a random password. To get the password, check the logs of the container by running:

docker logs <CONTAINER_ID>

You will see an output like the following:

========================================================================
You can now connect to this Glassfish server using:

    admin:b1uKcRK3r6SF

Please remember to change the above password as soon as possible!
========================================================================

In this case, b1uKcRK3r6SF is the password allocated to the admin user.

You can now login to you admin console to configure your Glassfish server:

http://127.0.0.1:4848/

Setting a specific password for the admin account

If you want to use a preset password instead of a random generated one, you can set the environment variable GLASSFISH_PASS to your specific password when running the container:

docker run -d -p 4848:4848 -p 8080:8080 -e GLASSFISH_PASS="mypass" ernyoke/glassfish-5.0.1

You can now test your deployment:

http://127.0.0.1:8080/

Done!

Starting the domain for debugging

If you want to start the domain with the --debug=true option you can set the environment variable DEBUG to true: docker run -d -p 4848:4848 -p 8080:8080 -p 9009:9009 -e DEBUG="true" ernyoke/glassfish-5.0.1 This should allow for debugger connections on port 9009.

Alpine Linux

https://hub.docker.com/r/frolvlad/alpine-oraclejdk8/ docker pull frolvlad/alpine-oraclejdk8

docker build -t ernyoke/alpine-glassfish-5.0.1 .

Notes

Auto deploy directory: /opt/glassfish5/glassfish/domains/domain1/autodeploy

Log directory: /opt/glassfish5/glassfish/domains/domain1/logs

docker run -d -v ~/tmp/domains:/opt/glassfish5/glassfish/domains:ro -p 4848:4848 -p 8080:8080 -e GLASSFISH_PASS="mypass" ernyoke/glassfish-5.0.1

docker run --rm -it -v ~/tmp/glassfish/deploy:/opt/app/deploy:ro -v ~/tmp/glassfish/logs:/opt/glassfish5/glassfish/domains/domain1/logs -p 4848:4848 -p 8080:8080 -p 9009:9009 -e GLASSFISH_PASS="mypass" ernyoke/glassfish-5.0.1 /bin/bash

docker run --rm -it -v ~/tmp/glassfish/deploy:/opt/glassfish5/glassfish/domains/domain1/autodeploy -v ~/tmp/glassfish/logs:/opt/glassfish5/glassfish/domains/domain1/logs -p 4848:4848 -p 8080:8080 -p 9009:9009 -e GLASSFISH_PASS="mypass" ernyoke/glassfish-5.0.1 /opt/app/bin/start-glassfish.sh

docker run --rm -it -v ~/tmp/glassfish/deploy:/opt/glassfish5/glassfish/domains/domain1/autodeploy -v ~/tmp/glassfish/logs:/opt/glassfish5/glassfish/domains/domain1/logs --net=host -e GLASSFISH_PASS="mypass" ernyoke/glassfish-5.0.1 /opt/app/bin/start-glassfish.sh

docker run --rm -it -v ~/tmp/glassfish/import:/import:ro -v ~/tmp/glassfish/domains:/opt/glassfish5/glassfish/domains -p 4848:4848 -p 8080:8080 -e GLASSFISH_PASS="mypass" ernyoke/glassfish-5.0.1 /bin/bash

docker run --rm -it -p 4848:4848 -p 8080:8080 -e GLASSFISH_PASS="mypass" ernyoke/glassfish-5.0.1 /bin/bash

docker-glassfish's People

Contributors

koert avatar tifayuki avatar bonelli avatar ernyoke avatar

Stargazers

 avatar

Watchers

James Cloos avatar  avatar

Forkers

bissbert

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.