This commit is contained in:
24
integration/semrack-integration/docker-compose.yml
Normal file
24
integration/semrack-integration/docker-compose.yml
Normal 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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user