Files
newsletter-hackernews/docker-compose.yml
Riccardo Senica a8d3bf1b3b
All checks were successful
Deploy / lint-build-deploy (push) Successful in 2m13s
feat: migrate AI to llama and use local db
2026-01-19 21:25:38 +01:00

17 lines
337 B
YAML

version: '3.8'
services:
postgres:
image: postgres:16-alpine
container_name: newsletter-db
environment:
- POSTGRES_USER=newsletter
- POSTGRES_PASSWORD=newsletter
- POSTGRES_DB=newsletter
ports:
- '5432:5432'
volumes:
- postgres-data:/var/lib/postgresql/data
volumes:
postgres-data: