From 9b8e04bb3c279f2c12c742d5fe724476cf3cd55c Mon Sep 17 00:00:00 2001 From: Yamila Moreno Date: Mon, 24 Nov 2025 08:15:36 +0100 Subject: [PATCH] :whale: Remove minio service from docker-compose.yml (#7809) --- CHANGES.md | 2 ++ docker/images/docker-compose.yaml | 25 ++----------------------- 2 files changed, 4 insertions(+), 23 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 25c4693a72..b1de66ba47 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -53,6 +53,8 @@ environment variable is also required on exporter. So if you are using penpot on-premise you will need to apply the same changes on your own `docker-compose.yaml` file. +We have removed the Minio server from the `docker/images/docker-compose.yml` +example. It's still usable as before, we just removed the example. ### :rocket: Epics and highlights diff --git a/docker/images/docker-compose.yaml b/docker/images/docker-compose.yaml index 3630aca6c6..5d709a92e8 100644 --- a/docker/images/docker-compose.yaml +++ b/docker/images/docker-compose.yaml @@ -54,7 +54,6 @@ volumes: penpot_postgres_v15: penpot_assets: # penpot_traefik: - # penpot_minio: services: ## Traefik service declaration example. Consider using it if you are going to expose @@ -155,13 +154,12 @@ services: PENPOT_ASSETS_STORAGE_BACKEND: assets-fs PENPOT_STORAGE_ASSETS_FS_DIRECTORY: /opt/data/assets - ## Also can be configured to to use a S3 compatible storage - ## service like MiniIO. Look below for minio service setup. + ## Also can be configured to to use a S3 compatible storage. # AWS_ACCESS_KEY_ID: # AWS_SECRET_ACCESS_KEY: # PENPOT_ASSETS_STORAGE_BACKEND: assets-s3 - # PENPOT_STORAGE_ASSETS_S3_ENDPOINT: http://penpot-minio:9000 + # PENPOT_STORAGE_ASSETS_S3_ENDPOINT: # PENPOT_STORAGE_ASSETS_S3_BUCKET: ## Telemetry. When enabled, a periodical process will send anonymous data about this @@ -262,22 +260,3 @@ services: - "1080:1080" networks: - penpot - - ## Example configuration of MiniIO (S3 compatible object storage service); If you don't - ## have preference, then just use filesystem, this is here just for the completeness. - - # minio: - # image: "minio/minio:latest" - # command: minio server /mnt/data --console-address ":9001" - # restart: always - # - # volumes: - # - "penpot_minio:/mnt/data" - # - # environment: - # - MINIO_ROOT_USER=minioadmin - # - MINIO_ROOT_PASSWORD=minioadmin - # - # ports: - # - 9000:9000 - # - 9001:9001