Skip to content

Commit

Permalink
ci: add db back into docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
ledouxm committed Jun 12, 2024
1 parent a00e2d3 commit 9e109c3
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions ci/docker-compose.development.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,17 @@ services:
depends_on:
- electric

# pg:
# image: postgres:14-alpine
# command:
# - -c
# - wal_level=logical
# restart: always
# volumes:
# - pg_data:/var/lib/postgresql/data
# - ./db/init/:/docker-entrypoint-initdb.d
pg:
image: postgres:14-alpine
command:
- -c
- wal_level=logical
restart: always
volumes:
- pg_data:/var/lib/postgresql/data

electric:
image: electricsql/electric:0.11.1
restart: always
depends_on:
- pg

0 comments on commit 9e109c3

Please sign in to comment.