ajout ap33-test
This commit is contained in:
38
config/ap33-test/payara/docker-compose.yml
Normal file
38
config/ap33-test/payara/docker-compose.yml
Normal file
@@ -0,0 +1,38 @@
|
||||
services:
|
||||
payara:
|
||||
image: payara/server-full:6.2025.9-jdk17
|
||||
container_name: payara
|
||||
ports:
|
||||
- "8080:8080"
|
||||
- "4848:4848"
|
||||
- "8181:8181"
|
||||
env_file:
|
||||
- "variables.env"
|
||||
#environment:
|
||||
#SCRIPT_DIR: ""
|
||||
# volumes:
|
||||
#- ./data/payara:/opt/payara
|
||||
#- ./payara/apps:/opt/payara/deployments
|
||||
# depends_on:
|
||||
# - db
|
||||
db:
|
||||
image: mariadb
|
||||
container_name: db
|
||||
ports:
|
||||
- "3336:3306"
|
||||
env_file:
|
||||
- "variables.env"
|
||||
volumes:
|
||||
- ./data/db_data:/var/lib/mysql
|
||||
- ./init:/docker-entrypoint-initdb.d
|
||||
restart: unless-stopped
|
||||
|
||||
phpmyadmin:
|
||||
image: phpmyadmin
|
||||
restart: always
|
||||
ports:
|
||||
- 8081:80
|
||||
environment:
|
||||
- PMA_ARBITRARY=1
|
||||
env_file:
|
||||
- "variables.env"
|
||||
Reference in New Issue
Block a user