mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-13 16:25:00 +00:00
161a10ecb0
* postgres: first step to implement partition management * postgres_driver: use of times.now().toTime().toUnix() instead of Moment.now() * postgres migrations: set new version to 2 * test_driver_postgres: use of assert instead of require and avoid using times.now() * postgres_driver: better implementation of the reset method with partitions * Remove createMessageTable, init, and deleteMessageTable procs * postgres: ensure we use the version 15.4 in tests * postgres_driver.nim: enhance debug logs partition addition * ci.yml: ensure logs are printed without colors * postgres_driver: starting the loop factory in an asynchronous task * postgres_driver: log partition name and size when removing a partition
11 lines
169 B
YAML
11 lines
169 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
db:
|
|
image: postgres:15.4-alpine3.18
|
|
restart: always
|
|
environment:
|
|
POSTGRES_PASSWORD: test123
|
|
ports:
|
|
- "5432:5432"
|