first barebones project structure

This commit is contained in:
2025-10-01 18:27:57 +02:00
parent 66f9d8e22a
commit 5c588c24ba
13 changed files with 258 additions and 35 deletions

View File

@@ -0,0 +1,11 @@
services:
mysql:
container_name: 'jpa-mysql'
image: 'mysql:latest'
environment:
- 'MYSQL_DATABASE=jpa'
- 'MYSQL_PASSWORD=secret'
- 'MYSQL_ROOT_PASSWORD=verysecret'
- 'MYSQL_USER=myuser'
ports:
- '3306:3306'