-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker-compose.mcp.yml
More file actions
88 lines (82 loc) · 1.88 KB
/
Copy pathdocker-compose.mcp.yml
File metadata and controls
88 lines (82 loc) · 1.88 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
##
## SPDX-FileCopyrightText: 2026 AOT Technologies
## SPDX-License-Identifier: Apache-2.0
##
services:
nw-google-drive:
image: nw-google-drive:latest
build:
context: .
dockerfile: docker/google-drive/Dockerfile
env_file: .env
environment:
NW_ALLOWED_CONNECTORS: google_drive
stdin_open: true
tty: true
restart: unless-stopped
nw-smartonfhir-epic:
image: nw-smartonfhir-epic:latest
build:
context: .
dockerfile: docker/fhir-epic/Dockerfile
env_file: .env
environment:
NW_ALLOWED_CONNECTORS: fhir_epic
stdin_open: true
tty: true
restart: unless-stopped
nw-smartonfhir-cerner:
image: nw-smartonfhir-cerner:latest
build:
context: .
dockerfile: docker/fhir-cerner/Dockerfile
env_file: .env
environment:
NW_ALLOWED_CONNECTORS: fhir_cerner
stdin_open: true
tty: true
restart: unless-stopped
nw-smtp:
image: nw-smtp:latest
build:
context: .
dockerfile: docker/smtp/Dockerfile
env_file: .env
environment:
NW_ALLOWED_CONNECTORS: smtp
stdin_open: true
tty: true
restart: unless-stopped
nw-stripe:
image: nw-stripe:latest
build:
context: .
dockerfile: docker/stripe/Dockerfile
env_file: .env
environment:
NW_ALLOWED_CONNECTORS: stripe
stdin_open: true
tty: true
restart: unless-stopped
nw-salesforce:
image: nw-salesforce:latest
build:
context: .
dockerfile: docker/salesforce/Dockerfile
env_file: .env
environment:
NW_ALLOWED_CONNECTORS: salesforce
stdin_open: true
tty: true
restart: unless-stopped
nw-slack:
image: nw-slack:latest
build:
context: .
dockerfile: docker/slack/Dockerfile
env_file: .env
environment:
NW_ALLOWED_CONNECTORS: slack
stdin_open: true
tty: true
restart: unless-stopped