forked from myungchoi/smart-platform-docker
-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
47 lines (44 loc) · 1.22 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
version: '3.0'
services:
# smart-reverse-proxy:
# image: traefik # The official Traefik docker image
# command: --api --docker # Enables the web UI and tells Traefik to listen to docker
# ports:
# - "80:80" # The HTTP port
# - "8080:8080" # The Web UI (enabled by --api)
# volumes:
# - /var/run/docker.sock:/var/run/docker.sock # So that Traefik can listen to the Docker events
smart-fhir:
build:
context: ./smart-fhir
dockerfile: Dockerfile
smart-mysql:
build:
context: ./smart-mysql
dockerfile: Dockerfile
smart-oauth:
build:
context: ./smart-oauth
dockerfile: Dockerfile
smart-patientpicker:
build:
context: ./smart-patientpicker
dockerfile: Dockerfile
smart-postgresql:
build:
context: ./smart-postgresql
dockerfile: Dockerfile
smart-pythonapp:
build:
context: ./smart-pythonapp
dockerfile: Dockerfile
smart-launcher: # SMART Launcher ---------------------------------------------
build:
context: ./smart-launcher
dockerfile: Dockerfile
# ports:
# - 8888:80
# labels:
# - traefik.frontend.rule=PathPrefixStrip:/smart-launcher
depends_on:
- smart-patientpicker