misskey-dev / misskey

🌎 An interplanetary microblogging platform 🚀
https://misskey-hub.net/
GNU Affero General Public License v3.0
9.84k stars 1.33k forks source link

[v13] [docker] Fluent Emoji not found. #9601

Closed rakino closed 1 year ago

rakino commented 1 year ago

💡 Summary

image

🥰 Expected Behavior

Fluent Emoji.

🤬 Actual Behavior

Emojis not found, alt texts (native emojis) are used instead.

📝 Steps to Reproduce

  1. Navigate to <baseURL>/settings/general
  2. Select Fluent Emoji.

📌 Environment

Misskey version: 13.0.0-rc.9 (Docker) Your OS: Guix System Your browser: GNU IceCat 102.6.0esr

CyberRex0 commented 1 year ago

fluent emoji assets are stored in another repository, it is as submodule git submodule update --init to download them

rakino commented 1 year ago

@CyberRex0 Thank you! I thought about that at first, howerer later I found there was actually already a line in the Dockerfile:

RUN git submodule update --init
CyberRex0 commented 1 year ago

Can you add this line into Dockerfile after line 48 and solve this? COPY --chown=misskey:misskey --from=builder /misskey/fluent-emojis /misskey/fluent-emojis

rakino commented 1 year ago

It works!