diff --git a/docker-compose.drizzle.yml b/docker-compose.drizzle.yml new file mode 100644 index 00000000..ab7a4048 --- /dev/null +++ b/docker-compose.drizzle.yml @@ -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: diff --git a/docker-compose.pgr.yml b/docker-compose.pgr.yml index 2a45f129..764c0915 100644 --- a/docker-compose.pgr.yml +++ b/docker-compose.pgr.yml @@ -11,7 +11,7 @@ services: - ./config/postgres:/var/lib/postgresql/data ports: - "5432:5432" # Map host port 5432 to container port 5432 - restart: no + restart: no redis: image: redis:latest # Use the latest Redis image