aboutsummaryrefslogtreecommitdiff
path: root/container-compose.yml
diff options
context:
space:
mode:
authorAlexander Kavon <hawk@alexkavon.com>2023-11-28 18:32:19 -0500
committerAlexander Kavon <hawk@alexkavon.com>2023-11-28 18:32:19 -0500
commit1597c23f84346dfa44da9605286863b11006bdb5 (patch)
tree78a2abbefc1bbcc9a13691e09ac252b5400a5b00 /container-compose.yml
parent629b0189b7bf20c748a1d37f8803ad0e3ffb8a49 (diff)
added migrations via tern, updated db package to connect to pgsql db, updated config to build db connection string, updated example .newsstand.toml config, new pgx dependency
Diffstat (limited to 'container-compose.yml')
-rw-r--r--container-compose.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/container-compose.yml b/container-compose.yml
index 42e2371..ca53ffa 100644
--- a/container-compose.yml
+++ b/container-compose.yml
@@ -16,8 +16,9 @@ services:
image: postgres:latest
restart: always
environment:
- POSTGRES_USER: newsstand
- POSTGRES_PASSWORD: newsstand
+ - POSTGRES_USER=newsstand
+ - POSTGRES_PASSWORD=newsstand
+ - POSTGRES_DB=newsstand
ports:
- "9002:5432"
volumes: