-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (40 loc) · 958 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (40 loc) · 958 Bytes
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
services:
marquez:
image: marquezproject/marquez:latest
platform: linux/amd64
ports:
- "5001:5000"
- "5002:5001"
depends_on:
db:
condition: service_healthy
environment:
- MARQUEZ_CONFIG=/usr/src/app/marquez.dev.yml
- POSTGRES_HOST=db
- POSTGRES_PORT=5432
- POSTGRES_DB=marquez
- POSTGRES_USER=marquez
- POSTGRES_PASSWORD=marquez
# Uncomment to run the Marquez web UI locally
web:
image: marquezproject/marquez-web:latest
platform: linux/amd64
ports:
- "3000:3000"
depends_on:
- marquez
environment:
- MARQUEZ_HOST=marquez
- MARQUEZ_PORT=5000
- WEB_PORT=3000
db:
image: postgres:14
environment:
- POSTGRES_USER=marquez
- POSTGRES_PASSWORD=marquez
- POSTGRES_DB=marquez
healthcheck:
test: ["CMD-SHELL", "pg_isready -U marquez"]
interval: 5s
timeout: 5s
retries: 5