From f4f72a11360ec2c8e99968988c7c802ec1eddb35 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Thu, 15 Feb 2024 23:19:03 -0500 Subject: [PATCH] Add blob store to Docker Compose (#7889) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR adds the local blob store—backed by [MinIO](https://github.com/minio/minio)—to the Docker Compose setup. This allows running the blob store locally all within a container. Release Notes: - N/A --- docker-compose.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 78faf21a60..3b27d56005 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,5 +12,17 @@ services: - 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 + command: server /data + ports: + - 9000:9000 + environment: + MINIO_ROOT_USER: the-blob-store-access-key + MINIO_ROOT_PASSWORD: the-blob-store-secret-key + volumes: + - ./.blob_store:/data + volumes: postgres_data: