diff --git a/docker-compose-with-pgsql.yml b/docker-compose-with-pgsql.yml index 24f7627..0728d4d 100644 --- a/docker-compose-with-pgsql.yml +++ b/docker-compose-with-pgsql.yml @@ -5,8 +5,8 @@ services: image: postgres:16-alpine container_name: qwen-agent-postgres environment: - - POSTGRES_USER=root - - POSTGRES_PASSWORD= + - POSTGRES_USER=postgres + - POSTGRES_PASSWORD=E5ACJo6zJub4QS - POSTGRES_DB=agent_db ports: - "5432:5432" @@ -33,7 +33,7 @@ services: - MAX_CONTEXT_TOKENS=262144 - DEFAULT_THINKING_ENABLE=true # PostgreSQL 配置 - - CHECKPOINT_DB_URL=postgresql://root:@postgres:5432/agent_db + - CHECKPOINT_DB_URL=postgresql://postgres:E5ACJo6zJub4QS@postgres:5432/agent_db volumes: # 挂载项目数据目录 - ./projects:/app/projects