Ajout des fichiers de configs et goss.yaml de ap31-test
This commit is contained in:
32
configs/docker-compose.yml
Normal file
32
configs/docker-compose.yml
Normal file
@@ -0,0 +1,32 @@
|
||||
services:
|
||||
payara:
|
||||
image: payara/server-full:6.2025.9-jdk17
|
||||
container_name: payara
|
||||
ports:
|
||||
- "8080:8080"
|
||||
- "4848:4848"
|
||||
env_file:
|
||||
- "variables.env"
|
||||
restart: unless-stopped
|
||||
|
||||
db:
|
||||
image: mariadb:latest
|
||||
container_name: db
|
||||
ports:
|
||||
- "3336:3306"
|
||||
env_file:
|
||||
- "variables.env"
|
||||
volumes:
|
||||
- ./data/db_data:/var/lib/mysql
|
||||
|
||||
phpmyadmin:
|
||||
image: phpmyadmin:latest
|
||||
container_name: phpmyadmin
|
||||
restart: always
|
||||
ports:
|
||||
- 2500:80
|
||||
environment:
|
||||
- PMA_ARBITRARY=1
|
||||
env_file:
|
||||
- "variables.env"
|
||||
|
||||
Reference in New Issue
Block a user