Skip to content

Commit 18fdf85

Browse files
chore(compose): replace the MinIO image by pgsty/silo in the compose stacks (#606) (#607)
The minio/minio image can no longer be pulled from Docker Hub: the upstream repository was archived on 24 April 2026 and Docker Hub has since removed the minio/minio and minio/mc repositories (every tag answers 404), which breaks every fresh deployment of this stack. Silo is the community-maintained fork of the MinIO server, compatible with the S3 API, the MINIO_* variables, the server command, the health route, the bundled mc client and the on-disk format, so the services keep their names, ports, credentials, command and healthcheck. The latest tag is used to stay aligned with the rest of the Filigran ecosystem.
1 parent ecd6b3f commit 18fdf85

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.env.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ XTM_ONE_SECRET_KEY=ChangeMeWithGeneratedRandomString
7070
# Credentials for the dedicated pgsql-xtm-one Postgres instance.
7171
XTM_ONE_POSTGRES_USER=xtmone
7272
XTM_ONE_POSTGRES_PASSWORD=ChangeMe
73-
# Optional: bucket name in MinIO (auto-created on first boot)
73+
# Optional: bucket name in the shared S3 object storage (Silo, auto-created on first boot)
7474
XTM_ONE_S3_BUCKET=xtm-one-files
7575
# Optional: enterprise license PEM (leave empty in xtm_one mode)
7676
XTM_ONE_ENTERPRISE_LICENSE=

docker-compose.dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ services:
3636
- opencti-dev-elasticsearch
3737
opencti-dev-minio:
3838
container_name: opencti-dev-minio
39-
image: minio/minio:latest
39+
image: pgsty/silo:latest
4040
ports:
4141
- "9000:9000"
4242
- "9001:9001"

docker-compose.opensearch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ services:
5454
timeout: 10s
5555
retries: 50
5656
minio:
57-
image: minio/minio:latest
57+
image: pgsty/silo:latest
5858
volumes:
5959
- s3data:/data
6060
ports:

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ services:
7070
timeout: 5s
7171
retries: 5
7272
minio:
73-
image: minio/minio:latest
73+
image: pgsty/silo:latest
7474
volumes:
7575
- s3data:/data
7676
ports:

0 commit comments

Comments
 (0)