You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- version: "2"
- services:
- postgres:
- image: postgres:18
- container_name: postgres
- restart: always
- ports:
- - "127.0.0.1:5433:5432"
- env_file:
- - ./env/db.env
- healthcheck:
- test: ["CMD-SHELL", "pg_isready -U postgres"]
- interval: 5s
- timeout: 5s
- retries: 5
- start_period: 30s
|