-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
52 lines (52 loc) · 1.45 KB
/
docker-compose.yaml
File metadata and controls
52 lines (52 loc) · 1.45 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
services:
# PostgreSQL database is required for Pomerium to interact with external MCP Clients such as claude.ai
postgres:
image: postgres:17
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: pomerium
POSTGRES_HOST_AUTH_METHOD: trust
ports:
- 5432:5432
volumes:
- postgres-data:/var/lib/postgresql/data
#
# Pomerium is a secure access management solution that provides identity-aware access to applications and services.
# It acts as a reverse proxy, managing authentication and authorization for web applications.
pomerium:
image: pomerium/pomerium:main
ports:
- '443:443'
- '80:80'
volumes:
- ./pomerium-config.yaml:/pomerium/config.yaml
- pomerium-autocert:/data/autocert
#
# MCP App Demo is a sample application that demonstrates the capabilities of Pomerium's Model Context Protocol integration (this repo).
#
mcp-app-demo:
restart: unless-stopped
image: pomerium/mcp-app-demo:main
environment:
__VITE_ADDITIONAL_SERVER_ALLOWED_HOSTS: mcp-app-demo
env_file: .env-mcp-app-demo
expose:
- 3000
ports:
- 3000:3000
mcp-servers:
restart: unless-stopped
image: pomerium/mcp-servers:main
environment:
PORT: 8080
SQLITE_DB_FILE: /sqlite.db
expose:
- 8080
ports:
- 8080:8080
volumes:
- ./sqlite.db:/sqlite.db
volumes:
postgres-data:
pomerium-autocert: