Files
semrack/integration/semrack-integration/docker-compose.yml
Guillaume Dugas 7047eca110
All checks were successful
Maven build / build (push) Successful in 1m46s
Project init
2025-09-09 10:05:59 +02:00

25 lines
491 B
YAML

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