pelican-eggs / yolks

Docker images designed for use with Pterodactyl's Egg system.
MIT License
89 stars 248 forks source link

uptimekuma - fix typo #188

Closed gOOvER closed 11 months ago

gOOvER commented 11 months ago

Description

fixes a typo

All Submissions:

New Image Submissions:

  1. [ ] Have you added your image to the Github workflows?
  2. [ ] Have you updated the README list to contain your new image?
QuintenQVD0 commented 11 months ago

This builds for arm64. So make the cloudflared logic adapt to that please. You can use the base logic that is in the debian installer image.

gOOvER commented 11 months ago

This builds for arm64. So make the cloudflared logic adapt to that please. You can use the base logic that is in the debian installer image.

which Debian Image you mean?

QuintenQVD0 commented 11 months ago

This builds for arm64. So make the cloudflared logic adapt to that please. You can use the base logic that is in the debian installer image.

which Debian Image you mean?

Debian installer one. Has some basic logic to only install some things on amd64

gOOvER commented 11 months ago

ah ok. i'll check it later

QuintenQVD0 commented 11 months ago
RUN         if [ "$(uname -m)" = "x86_64" ]; then \
                curl -L https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64 -o /usr/bin/cloudflared \
            else \
                curl -L https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-arm64 -o /usr/bin/cloudflared \
            fi

RUN          chmod +x /usr/bin/cloudflared

Should work but please test

gOOvER commented 11 months ago

closed because of https://github.com/parkervcp/yolks/pull/189