-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdocker-compose.yaml
41 lines (37 loc) · 1.22 KB
/
docker-compose.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# version: '3.3' # version is deprecated
# Define the services/containers to be run
services:
glassfish:
image: omnifish/glassfish:7.0.4
ports:
- "8080:8080"
- "8181:8181" # HTTPS listener
- "4848:4848" # HTTPS admin listener
- "9009:9009" # Debug port
restart: always
# environment:
# JVM_ARGS: ""
# - "AS_ADMIN_MASTERPASSWORD=admin" #default password is `changeit`
volumes:
- ./deployments:/opt/glassfish7/glassfish/domains/domain1/autodeploy
wildfly:
image: quay.io/wildfly/wildfly:28.0.1.Final-jdk17
ports:
- "8080:8080"
- "9990:9990" # admin listener
restart: always
command: /opt/jboss/wildfly/bin/standalone.sh -c, standalone-full.xml -b 0.0.0.0 -bmanagement 0.0.0.0
# environment:
volumes:
- ./deployments:/opt/jboss/wildfly/standalone/deployments
openliberty:
image: icr.io/appcafe/open-liberty:23.0.0.4-full-java17-openj9-ubi
ports:
- "9080:9080"
- "9443:9443" # HTTPS listener
restart: always
# command: configure.sh # use for open-liberty:kernel image.
# environment:
volumes:
- ./src/main/liberty/config/server.xml:/config/server.xml
- ./deployments:/config/apps