1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-23 04:47:02 +00:00

add a README tutorial on the mvc/overview example

Former-commit-id: c563c4f1ffa98705829e14b189a6976c3a6aa898
This commit is contained in:
Gerasimos (Makis) Maropoulos
2020-06-22 17:49:45 +03:00
parent 29d98ac281
commit 9922265454
7 changed files with 469 additions and 8 deletions

View File

@@ -0,0 +1,16 @@
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