a4541cf266
Co-authored-by: Cursor <cursoragent@cursor.com>
23 lines
602 B
YAML
23 lines
602 B
YAML
# Локальная разработка: только PostgreSQL, приложение на хосте (npm run dev)
|
|
services:
|
|
postgres:
|
|
image: postgres:17-alpine
|
|
container_name: shop-postgres-dev
|
|
ports:
|
|
- '5432:5432'
|
|
environment:
|
|
POSTGRES_USER: shop
|
|
POSTGRES_PASSWORD: shop
|
|
POSTGRES_DB: shop
|
|
volumes:
|
|
- shop_pg_dev:/var/lib/postgresql/data
|
|
- ./postgres/init:/docker-entrypoint-initdb.d:ro
|
|
healthcheck:
|
|
test: ['CMD-SHELL', 'pg_isready -U shop -d shop']
|
|
interval: 3s
|
|
timeout: 3s
|
|
retries: 5
|
|
|
|
volumes:
|
|
shop_pg_dev:
|