iris/_examples/mvc/overview/docker-compose.yml
Gerasimos (Makis) Maropoulos 9922265454 add a README tutorial on the mvc/overview example
Former-commit-id: c563c4f1ffa98705829e14b189a6976c3a6aa898
2020-06-22 17:49:45 +03:00

17 lines
309 B
YAML

version: '3.1'
services:
app:
build: .
ports:
- 8080:8080
environment:
PORT: 8080
ENVIRONMENT: development
restart: on-failure
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/ping"]
interval: 30s
timeout: 10s
retries: 5