-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcompose.yml
More file actions
31 lines (31 loc) · 889 Bytes
/
compose.yml
File metadata and controls
31 lines (31 loc) · 889 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
name: pfeed
volumes:
timescaledb_data:
# minio_data:
services:
timescaledb:
image: timescale/timescaledb:2.24.0-pg17
ports:
- "${POSTGRES_PORT:-5432}:5432"
volumes:
- timescaledb_data:/var/lib/postgresql/data
environment:
POSTGRES_DB: ${POSTGRES_DB:-postgres}
POSTGRES_USER: ${POSTGRES_USER:-pfunder}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-password}
profiles:
- timescaledb
# minio:
# container_name: pe-minio
# image: minio/minio:RELEASE.2025-09-07T16-13-09Z
# ports:
# - "${MINIO_PORT:-9000}:9000"
# - "${MINIO_CONSOLE_PORT:-9001}:9001"
# volumes:
# - minio_data:/data
# environment:
# MINIO_ROOT_USER: ${MINIO_ROOT_USER:-pfunder}
# MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD:-password}
# command: server /data --console-address ":9001"
# profiles:
# - minio