# Local infrastructure for development: `docker compose up -d` services: postgres: image: postgres:17-alpine environment: POSTGRES_USER: fetcha POSTGRES_PASSWORD: fetcha POSTGRES_DB: fetcha ports: ["5432:5432"] volumes: ["pgdata:/var/lib/postgresql/data"] redis: image: valkey/valkey:8-alpine ports: ["6379:6379"] volumes: pgdata: