Initial Project Commit

This commit is contained in:
Orlando M Guerreiro 2025-05-22 19:23:40 +01:00
commit a6dea9c888
2148 changed files with 173870 additions and 0 deletions

21
src/main/docker/mysql.yml Normal file
View file

@ -0,0 +1,21 @@
# This configuration is intended for development purpose, it's **your** responsibility to harden it for production
name: resilient
services:
mysql:
image: mysql:8.4.0
volumes:
- ./config/mysql:/etc/mysql/conf.d
# - ~/volumes/jhipster/resilient/mysql/:/var/lib/mysql/
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=yes
- MYSQL_DATABASE=resilient
# If you want to expose these ports outside your dev PC,
# remove the "127.0.0.1:" prefix
ports:
- 127.0.0.1:3306:3306
command: mysqld --lower_case_table_names=1 --character_set_server=utf8mb4 --explicit_defaults_for_timestamp
healthcheck:
test: ['CMD', 'mysql', '-e', 'SHOW DATABASES;']
interval: 5s
timeout: 5s
retries: 10