forked from cashubtc/cdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.postgres.yaml
More file actions
52 lines (49 loc) · 1.41 KB
/
docker-compose.postgres.yaml
File metadata and controls
52 lines (49 loc) · 1.41 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
# Docker Compose configuration for CDK Mint with PostgreSQL
# Usage: docker-compose -f docker-compose.postgres.yaml up
services:
# CDK Mint service with PostgreSQL
mintd:
build:
context: .
dockerfile: Dockerfile
container_name: mint
ports:
- "8085:8085"
environment:
- CDK_MINTD_URL=https://example.com
- CDK_MINTD_LN_BACKEND=fakewallet
- CDK_MINTD_LISTEN_HOST=0.0.0.0
- CDK_MINTD_LISTEN_PORT=8085
- CDK_MINTD_MNEMONIC=
# PostgreSQL database configuration
- CDK_MINTD_DATABASE=postgres
- CDK_MINTD_DATABASE_URL=postgresql://cdk_user:cdk_password@postgres:5432/cdk_mint
# Cache configuration
- CDK_MINTD_CACHE_BACKEND=memory
command: ["cdk-mintd"]
depends_on:
postgres:
condition: service_healthy
# PostgreSQL database service
postgres:
image: postgres:16-alpine
container_name: mint_postgres
restart: unless-stopped
environment:
- POSTGRES_USER=cdk_user
- POSTGRES_PASSWORD=cdk_password
- POSTGRES_DB=cdk_mint
- POSTGRES_INITDB_ARGS=--encoding=UTF-8 --lc-collate=C --lc-ctype=C
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U cdk_user -d cdk_mint"]
interval: 10s
timeout: 5s
retries: 5
start_period: 30s
volumes:
postgres_data:
driver: local