Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wip #1226

Open
wants to merge 1 commit into
base: I25938a3a549a28fc768a8b09f3d68a0327e1eb11
Choose a base branch
from
Open

wip #1226

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions build/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,24 @@ services:
- MYSQL_DATABASE=noria
postgres:
image: postgres:14
tmpfs:
- /var/lib/pg/mem-data14
environment:
- POSTGRES_PASSWORD=noria
- POSTGRES_DB=noria
- PGDATA=/var/lib/pg/mem-data14
command:
- "postgres"
- "-c"
- "wal_level=logical"
postgres13:
image: postgres:13
tmpfs:
- /var/lib/pg/mem-data13
environment:
- POSTGRES_PASSWORD=noria
- POSTGRES_DB=noria
- PGDATA=/var/lib/pg/mem-data13
command:
- "postgres"
- "-c"
Expand Down