Improve documentation
This commit is contained in:
parent
99d01f17a9
commit
19938091fa
7 changed files with 129 additions and 5 deletions
14
docker-compose.yml
Normal file
14
docker-compose.yml
Normal 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue