Improve documentation

This commit is contained in:
Joakim Hellsén 2024-02-13 07:05:15 +01:00
commit 19938091fa
7 changed files with 129 additions and 5 deletions

14
docker-compose.yml Normal file
View file

@ -0,0 +1,14 @@
services:
db:
image: postgres:16
container_name: feedvault-db
restart: unless-stopped
environment:
POSTGRES_USER: feedvault
POSTGRES_PASSWORD: feedvault # Change this to something more secure in production.
# .vscode/settings.json uses feedvault as the password for goose. https://github.com/pressly/goose
POSTGRES_DB: feedvault
volumes:
- ./data:/var/lib/postgresql/data
ports:
- "5432:5432"