Rename docker-compose.yml to compose.yaml

This commit is contained in:
ivenos
2026-06-04 10:01:35 +02:00
parent ebe1c7a297
commit 89f3f3c8cd
5 changed files with 0 additions and 0 deletions

15
compose.drizzle.yaml Normal file
View 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: