Draft - ProjetDevWeb : tentative de création des POJO avec JPA

This commit is contained in:
kmitresse
2024-03-10 19:05:58 +01:00
commit 9d59897ac4
26 changed files with 1540 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
version: '2'
services:
db:
image: mysql:latest
volumes:
- ./mysql:/docker-entrypoint-initdb.d
environment:
- MYSQL_DATABASE=db
- MYSQL_ROOT_PASSWORD=root
ports:
- "6033:3306"
expose:
- "3306"