Skip to content

Commit

Permalink
[nessie] allow nessie to connect to postgres container
Browse files Browse the repository at this point in the history
  • Loading branch information
arielshaqed committed Nov 15, 2020
1 parent b810243 commit 4ebed6c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion nessie/ops/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3'
services:
lakefs:
image: "${REPO}/lakefs:${TAG}"
ports:
ports:
- "8000:8000"
depends_on:
- "postgres"
Expand All @@ -20,6 +20,8 @@ services:
entrypoint: ["/app/wait-for", "postgres:5432", "--", "/app/lakefs", "run"]
postgres:
image: "postgres:11"
ports:
- "5432:5432"
environment:
POSTGRES_USER: lakefs
POSTGRES_PASSWORD: lakefs

0 comments on commit 4ebed6c

Please sign in to comment.