Project init
All checks were successful
Maven build / build (push) Successful in 1m46s

This commit is contained in:
Guillaume Dugas
2025-09-09 10:00:01 +02:00
commit 7047eca110
102 changed files with 3813 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
services:
postgres:
image: postgres
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: quarkus
ports:
- "35532:5432"
semrack:
build:
context: .
dockerfile: src/main/docker/Dockerfile.native-micro
environment:
QUARKUS_FLYWAY_ACTIVE: true
ports:
- "9090:8080"
links:
- postgres
volumes:
- ./.env:/work/.env
- ./src/main/resources/application.properties:/work/config/application.properties