diff options
| author | Alexander Kavon <hawk@alexkavon.com> | 2023-11-28 18:32:19 -0500 |
|---|---|---|
| committer | Alexander Kavon <hawk@alexkavon.com> | 2023-11-28 18:32:19 -0500 |
| commit | 1597c23f84346dfa44da9605286863b11006bdb5 (patch) | |
| tree | 78a2abbefc1bbcc9a13691e09ac252b5400a5b00 /container-compose.yml | |
| parent | 629b0189b7bf20c748a1d37f8803ad0e3ffb8a49 (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.yml | 5 |
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: |
