revoltchat / self-hosted

Deploy Revolt using Docker.
904 stars 116 forks source link

bug: curl missing from latest release of minio/mc, causes errors starting. #69

Closed Malte0621 closed 6 months ago

Malte0621 commented 11 months ago

What happened?

When pulling and starting the self-hosted version of revolt using docker, the minio/mc image spams errors that says "curl" is missing. Which is because curl was removed from the latest version of minio/mc.

Temporary solution: Downgrade minio/mc to RELEASE.2023-10-24T21-42-22Z. (This is done by changing the docker-compose.yml file like following:

createbuckets:
    image: minio/mc:RELEASE.2023-10-14T01-57-03Z

(note the added :RELEASE.2023-10-14T01-57-03Z)

Permanent solution:

Geoxor commented 10 months ago

indeed, the createbuckets container keeps spamming curl but it doesn't exist causing minio not to work causing S3Errors on the client

image aa

Geoxor commented 10 months ago

Temporary fix is to change docker-compose.yml to use an older version of minio/mc from 5 months ago when it had curl still

+ createbuckets:
+    image: minio/mc:RELEASE.2023-07-21T20-44-27Z
-  createbuckets:
-    image: minio/mc
Malte0621 commented 9 months ago

Temporary fix is to change docker-compose.yml to use an older version of minio/mc from 5 months ago when it had curl still

+ createbuckets:
+    image: minio/mc:RELEASE.2023-07-21T20-44-27Z
-  createbuckets:
-    image: minio/mc

I already posted a temporary fix lol (minio/mc:RELEASE.2023-10-14T01-57-03Z works as it has curl .-.)

Geoxor commented 9 months ago

Temporary fix is to change docker-compose.yml to use an older version of minio/mc from 5 months ago when it had curl still

+ createbuckets:
+    image: minio/mc:RELEASE.2023-07-21T20-44-27Z
-  createbuckets:
-    image: minio/mc

I already posted a temporary fix lol (minio/mc:RELEASE.2023-10-14T01-57-03Z works as it has curl .-.)

Yeah sorry i didn't see it and figured a fix myself and then noticed you mentioned it

insertish commented 6 months ago

Fixed in #80