diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..485dee6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.idea diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..ec65ee5 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,9 @@ +services: + icd-api: + image: whoicd/icd-api + ports: + - "1902:80" + environment: + - acceptLicense=true + - saveAnalytics=true + - fhirSupport=true \ No newline at end of file diff --git a/docker.md b/docker.md new file mode 100644 index 0000000..0abc340 --- /dev/null +++ b/docker.md @@ -0,0 +1,10 @@ +# Docker + +```bash +docker compose up -d +``` + +* http://localhost:1902/browse +* http://localhost:1902/ct +* http://localhost:1902/fhir +* http://localhost:1902/swagger \ No newline at end of file