mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-28 03:39:42 +00:00
🔨 add drizzle in docker-compose DEV for viewing the postgres db in local development
This commit is contained in:
parent
48aebea6cf
commit
c36fb63f8c
2 changed files with 16 additions and 1 deletions
15
docker-compose.drizzle.yml
Normal file
15
docker-compose.drizzle.yml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
services:
|
||||
drizzle-gateway:
|
||||
image: ghcr.io/drizzle-team/gateway:latest
|
||||
ports:
|
||||
- "4984:4983"
|
||||
depends_on:
|
||||
- db
|
||||
environment:
|
||||
- STORE_PATH=/app
|
||||
- DATABASE_URL=postgresql://postgres:password@db:5432/postgres
|
||||
volumes:
|
||||
- drizzle-gateway-data:/app
|
||||
|
||||
volumes:
|
||||
drizzle-gateway-data:
|
||||
Loading…
Add table
Add a link
Reference in a new issue