-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
55 lines (50 loc) · 1.12 KB
/
docker-compose.yml
File metadata and controls
55 lines (50 loc) · 1.12 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
# SPDX-FileCopyrightText: 2025 Deutsche Telekom AG and others
#
# SPDX-License-Identifier: Apache-2.0
services:
adl-server:
image: ghcr.io/eclipse-lmos/adl-server:latest
ports:
- "8080:8080"
volumes:
- ./my-adls:/app/adls
environment:
- ARC_AI_KEY=${OPENAI_API_KEY}
- ARC_MODEL=gpt-4o
- ARC_CLIENT=openai
- DATABASE_URL=jdbc:postgresql://postgres:5432/adl
- DATABASE_USER=postgres
- DATABASE_PASSWORD=postgres
depends_on:
postgres:
condition: service_healthy
networks:
- adl-network
demo-mcp:
image: ghcr.io/eclipse-lmos/demo-mcp:latest
ports:
- "8088:8088"
networks:
- adl-network
postgres:
image: postgres:17
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: adl
ports:
- "5432:5432"
volumes:
- pgdata:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 3s
retries: 5
networks:
- adl-network
networks:
adl-network:
driver: bridge
volumes:
pgdata: