Files
buildfor_life_repair/docker-compose.yml
T
grabowski 6f0e0ad6c6 Initial commit: buildfor_life_repair inventory system
SvelteKit + PostgreSQL app for tracking vintage computers, audio equipment,
components, and installation history. Features device/component CRUD, operation
logs, QR code labels, global search, image uploads, and dark mode.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-06 17:11:05 +07:00

15 lines
267 B
YAML

services:
db:
image: postgres:16-alpine
environment:
POSTGRES_DB: buildfor_life_repair
POSTGRES_USER: bflr
POSTGRES_PASSWORD: bflr_dev
ports:
- "5432:5432"
volumes:
- pgdata:/var/lib/postgresql/data
volumes:
pgdata: