-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kosala Gangabadage
authored and
Kosala Gangabadage
committed
Mar 25, 2020
1 parent
d603d92
commit f8bf644
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
version: "3.1" | ||
|
||
services: | ||
covid19-service: | ||
image: govtechlk/covid19:latest | ||
expose: | ||
- "8000" | ||
restart: always | ||
ports: | ||
- 8000:8000 | ||
environment: | ||
- COVID19_SERVICE_DOMAIN="localhost" | ||
healthcheck: | ||
test: ["CMD", "/usr/bin/healthcheck"] | ||
interval: 30s | ||
timeout: 10s | ||
retries: 5 | ||
volumes: | ||
- /home/covid/application.yml:/tmp/target/application.yml | ||
|