您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

16 行
329 B

  1. version: "2"
  2. services:
  3. postgres:
  4. image: postgres:18
  5. container_name: postgres
  6. restart: always
  7. ports:
  8. - "127.0.0.1:5433:5432"
  9. env_file:
  10. - ./env/db.env
  11. healthcheck:
  12. test: ["CMD-SHELL", "pg_isready -U postgres"]
  13. interval: 5s
  14. timeout: 5s
  15. retries: 5
  16. start_period: 30s