mirror of
https://github.com/Dannecron/spring-boot-demo.git
synced 2025-12-25 16:22:35 +03:00
21 lines
399 B
YAML
21 lines
399 B
YAML
---
|
|
services:
|
|
demo:
|
|
image: localhost/spring-boot-demo:latest
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: .
|
|
env_file:
|
|
- .env
|
|
expose:
|
|
- 8080
|
|
- 8081
|
|
command:
|
|
- app.jar
|
|
healthcheck:
|
|
test: [ "CMD", "curl", "--fail", "--silent", "http://localhost:8081/health" ]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 5
|
|
start_period: 10s
|