25 lines
491 B
YAML
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
|
|
|
|
|