Remove Postgres and `stripe-mock` from Docker Compose (#48313)
Marshall Bowers
created 2 months ago
This PR removes the Postgres and `stripe-mock` contains from the Docker
Compose cluster, as these now run in Cloud's Docker Compose cluster.
Release Notes:
- N/A
Change summary
compose.yml | 20 --------------------
docker-compose.sql | 2 --
2 files changed, 22 deletions(-)
Detailed changes
@@ -1,15 +1,4 @@
services:
- postgres:
- image: docker.io/library/postgres:15
- container_name: zed_postgres
- ports:
- - 5432:5432
- environment:
- POSTGRES_HOST_AUTH_METHOD: trust
- volumes:
- - postgres_data:/var/lib/postgresql/data
- - ./docker-compose.sql:/docker-entrypoint-initdb.d/init.sql
-
blob_store:
image: quay.io/minio/minio
container_name: blob_store
@@ -32,12 +21,3 @@ services:
- 7882:7882/udp
volumes:
- ./livekit.yaml:/livekit.yaml
-
- stripe-mock:
- image: docker.io/stripe/stripe-mock:v0.178.0
- ports:
- - 12111:12111
- - 12112:12112
-
-volumes:
- postgres_data:
@@ -1,2 +0,0 @@
-create database zed;
-create database zed_llm;