2026-07-21 20:07:51 +08:00
|
|
|
|
# 仅供本地开发使用;agent/agent 是非生产默认凭据。
|
2026-07-18 15:50:04 +08:00
|
|
|
|
services:
|
|
|
|
|
|
postgres:
|
|
|
|
|
|
image: postgres:16
|
|
|
|
|
|
environment:
|
|
|
|
|
|
POSTGRES_USER: agent
|
|
|
|
|
|
POSTGRES_PASSWORD: agent
|
|
|
|
|
|
POSTGRES_DB: agent
|
|
|
|
|
|
ports:
|
|
|
|
|
|
- "5432:5432"
|
|
|
|
|
|
volumes:
|
|
|
|
|
|
- postgres_data:/var/lib/postgresql/data
|
|
|
|
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
|
|
postgres_data:
|