Supla Cloud na raspberry PI 4 - problem z instalacją

grzecho83
Posts: 8
Joined: Thu Jul 04, 2024 6:50 am

Post

Witam, od paru dni męczę się z uruchomieniem własnego serwera na raspberry PI. Jeśli chodzi o Linuxa to dopiero zaczynam więc wszystkie komendy z tutoriali przepisuje, niewiele z nich rozumiejąc. Ale ciągle nie udaje mi się tego odpalić, i nawet nie bardzo wiem czemu.
W pierwszym kroku robię instalację systemu przez Raspberry Pi Imager.
Potem wszystko po kolei z tego poradnika viewtopic.php?t=2748
Próbowałem też innych poradników, z podobnym skutkiem. Może ta metoda już nie działa, artykuł jest z 2017. Nie znalazłem nic nowszego.
Chciałem załączyć logi z ostatniej próby ale forum nie puszcza załączników tekstowych. Podsyłam link https://drive.google.com/file/d/10RTFEl ... sp=sharing
User avatar
lesny8
Posts: 2882
Joined: Mon Dec 11, 2017 9:43 pm

Post

Ojojoj, po tym logu widać level początkującego :? ale to, że czegoś aktualnie nie wiesz, nie dostrzegasz, to nie znaczy, że się nie nauczysz ;)

Wróć do początku i zainstaluj sobie czysty system. Na początek swojej przygody z linuksem najlepiej będzie jak postawisz wszystko na 32 bitowej wersji OS. Przygotuj kartę micro SD zgodnie z tym co kiedyś tu pokazywałem w #2 viewtopic.php?t=12353
Temat dotyczy zupełnie czego innego, ale przygotowanie karty z OS odbywa się dokładnie tak samo. Trochę od tamtej pory Imager się mógł zmienić, ale na pewno ogarniesz.

Potem zainstaluj dockera, docker-compose nie będzie już potrzebny jako oddzielna aplikacja, bo od jakiegoś czasu jest dostępny compose jako plugin w dockerze.
Przy instalacji skorzystaj z oficjalnej dokumentacji dockera. Instalacja dla OS 64-bit https://docs.docker.com/engine/install/debian/
a dla 32-bit https://docs.docker.com/engine/install/raspberry-pi-os/
Metod instalacji jest kilka, ale najwygodniejsza jest przez apt https://docs.docker.com/engine/install/ ... repository

Po instalacji dockera wykonaj jeszcze to co tu piszą https://docs.docker.com/engine/install/ ... stinstall/

Jak już będziesz to miał, to możesz pobierać repozytorium supla-docker, ale zanim wystartujesz skrypt supla.sh usuń 3 myślniki w skrypcie pomiędzy docker a compose. Możesz skorzystać z tego polecenia, żeby za dużo nie pousuwać

Code: Select all

sed -i "s+docker-compose +docker compose +g" supla.sh
Po pierwszym uruchomieniu supla.sh wypełniasz odpowiednio plik .env ze zmiennymi wedle potrzeb i uruchamiasz ponownie skrypt z poleceniem start.

Dla 32-bit OS powinny pobrać się obrazy, gdyby jednak tak nie było zweryfikuj czy w .env masz doklejony plik ':docker-compose.arm32v7.yml', tak to powinno wyglądać

Code: Select all

...
COMPOSE_FILE=docker-compose.yml:docker-compose.standalone.yml:docker-compose.arm32v7.yml
Na razie tyle...
Pochwal się postępami a w razie kłopotów pisz, pomożemy ;)
Czekam na kolejne Supla Offline Party 👍
grzecho83
Posts: 8
Joined: Thu Jul 04, 2024 6:50 am

Post

hej, no tak, jestem bardzo początkujący. To moje drugie podejście do linuxa. Pierwsze było nieudane. Dzięki za szczegółowe instrukcje. niestety nie udało się znowu. Chociaż wydaje mi się że jestem już bliżej. Z dockerem namieszałem bo nie zauważyłem że do tego też podałeś poradnik i znalazłem na własną rękę.
Poniżej nowe logi.
https://drive.google.com/file/d/10U63c0 ... sp=sharing
User avatar
lesny8
Posts: 2882
Joined: Mon Dec 11, 2017 9:43 pm

Post

Ok.
Taka drobna uwaga, musisz czytać po co konkretne komendy oznaczją ;)
Bez sensu jest włączanie serwisu dockera, a potem jego wyłączanie. Chodzi mi o to

Code: Select all

pi@raspberrypi:~ $ sudo systemctl enable docker.service
sudo systemctl enable containerd.service
Synchronizing state of docker.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable docker
pi@raspberrypi:~ $ sudo systemctl disable docker.service
sudo systemctl disable containerd.service
Synchronizing state of docker.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install disable docker
Removed "/etc/systemd/system/multi-user.target.wants/docker.service".
Removed "/etc/systemd/system/multi-user.target.wants/containerd.service".
Te serwisy mają być włączone i tak domyślnie jest, bo w przeciwnym razie po zaniku napięcia system nie wystartuje dockera i kontenerów. Aktualnie z logu wynika, że je wyłączyłeś. Włącz je ponownie

Code: Select all

sudo systemctl enable docker.service
sudo systemctl enable containerd.service
Dobra, pokaż co tam już uruchomiłeś bo wygląda jakby jakieś kontenery już wystartowały

Code: Select all

docker ps


Sprawdź czy masz na końcu .env to co pisałem w poprzednim poście

Code: Select all

...
COMPOSE_FILE=docker-compose.yml:docker-compose.standalone.yml:docker-compose.arm32v7.yml
Dla tego 64 bitowego systemu, który masz, musisz dopisać i wskazać composerowi, żeby pobrał 32 bitowe obrazy Supli, bo innych nie ma na dockerhubie i aby pobrał właściwy kontener pod bazę.
Czekam na kolejne Supla Offline Party 👍
grzecho83
Posts: 8
Joined: Thu Jul 04, 2024 6:50 am

Post

Problem nie jest z czytaniem a ze zrozumieniem :) ja jestem dziecko windowsa. Ale w pracy oferują kursy to zapisałem się na linuxa. Płatny to może coś z tego będzie. Tymczasem musze próbować zrozumieć co tu klepie. Chociaż może winny jest też brak skupienia, dwójka dzieci nie daje za wiele pola. Wszystko robię w międzyczasie.
Dopisałem ten tekst na końcu .env , wcześniej przeoczyłem ten krok.
teraz po ostatniej komendzie jakby się zawieszał, zrywa mi połączenie z putty.

Code: Select all

login as: pi
pi@192.168.1.6's password:
Access denied
pi@192.168.1.6's password:
Linux raspberrypi 6.6.31+rpt-rpi-v8 #1 SMP PREEMPT Debian 1:6.6.31-1+rpt1 (2024-05-29) aarch64

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Sun Jul  7 21:52:40 2024 from 192.168.1.4

SSH is enabled and the default password for the 'pi' user has not been changed.
This is a security risk - please login as the 'pi' user and type 'passwd' to set a new password.

pi@raspberrypi:~ $ sudo systemctl enable docker.service
sudo systemctl enable containerd.service
Synchronizing state of docker.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable docker
pi@raspberrypi:~ $ docker ps
CONTAINER ID   IMAGE     COMMAND   CREATED   STATUS    PORTS     NAMES
pi@raspberrypi:~ $ ./supla-docker/supla.sh start
Starting SUPLA containers
WARN[0000] /home/pi/supla-docker/docker-compose.yml: `version` is obsolete
WARN[0000] /home/pi/supla-docker/docker-compose.standalone.yml: `version` is obsolete
WARN[0000] /home/pi/supla-docker/docker-compose.arm32v7.yml: `version` is obsolete
[+] Running 0/3
 ⠇ supla-server [⠀⠀⠀⠀⠀⠀] Pulling                                           2.9s
 ⠇ supla-cloud [⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀] Pulling                            2.9s
 ⠇ supla-db [⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀] Pulling                                         2.9s



User avatar
lesny8
Posts: 2882
Joined: Mon Dec 11, 2017 9:43 pm

Post

Jasne, wszyscy to rozumiemy, bo każdy z nas tu ma jakieś brzdące ;)

Uczymy się całe życie, jaki by ten kurs nie był to na pewno rozświetli Ci drogę, ważne żeby się chciało nią potem podążać :)

Co do tego co się dzieje w terminalu to wygląda dobrze.
Spróbuj sobie pingować RPi z windy i zobacz czy odpowiedź jest cały czas i jakie są czasy. Widać, że trwa pobieranie warstw obrazów i być może dlatego zrywa Ci połączenie. Nie powinno, ale nie wiem jakie tam masz warunki. Ile to RPi ma ramu? Jak jest podłączone do internetu, kabel czy wifi? Jaki masz internet/przepustowość? Wszystko ma znaczenie i czasami coś nie powinno się dziać, a się dzieje :lol:

Zobacz po jakimś czasie, czy możesz się zalogować ponownie i czy docker ps Ci już coś pokaże.
Czekam na kolejne Supla Offline Party 👍
grzecho83
Posts: 8
Joined: Thu Jul 04, 2024 6:50 am

Post

Działa, uruchomiłem serwer, chociaż nie bardzo wiem co robiłem :) Koniecznie zrobię ten kurs, temat wydaje się ciekawy.
Wczoraj było burzowo i miałem słaby internet (radiówka), do tego połączenie było na wifi. Dzisiaj ładna pogoda i podłączyłem przez kabel LAN
Dzięki wielkie za pomoc.

Code: Select all

login as: pi
pi@192.168.1.6's password:
Linux raspberrypi 6.6.31+rpt-rpi-v8 #1 SMP PREEMPT Debian 1:6.6.31-1+rpt1 (2024-                                                                                                             05-29) aarch64

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Sun Jul  7 23:24:13 2024 from 192.168.1.4

SSH is enabled and the default password for the 'pi' user has not been changed.
This is a security risk - please login as the 'pi' user and type 'passwd' to set                                                                                                              a new password.

pi@raspberrypi:~ $ ./supla-docker/supla.sh start
Starting SUPLA containers
WARN[0000] /home/pi/supla-docker/docker-compose.yml: `version` is obsolete
WARN[0000] /home/pi/supla-docker/docker-compose.standalone.yml: `version` is obs                                                                                                             olete
WARN[0000] /home/pi/supla-docker/docker-compose.arm32v7.yml: `version` is obsole                                                                                                             te
[+] Running 43/21
 ✔ supla-server Pulled                                                   123.5s
 ✔ supla-cloud Pulled                                                    170.0s
 ✔ supla-db Pulled                                                        78.9s


















[+] Running 2/3
[+] Running 4/3a_default               Created                             0.3s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s 0177] mount of type `volume` should not define `bind` option
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Created                                                                                                             7.3s
[+] Running 5/5 requested image's platform (linux/amd64) does not match the dete                                                                                                              ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s                                                                     Creatin                                                                                                              ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Created                                                                                                             7.3s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ⠼ Container supla-db                                                                                                                                                                                                                                                 Startin                                                                                                             g7.6s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ⠴ Container supla-db                                                                                                                                                                                                                                                 Startin                                                                                                             g7.7s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ⠦ Container supla-db                                                                                                                                                                                                                                                 Startin                                                                                                             g7.8s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ⠧ Container supla-db                                                                                                                                                                                                                                                 Startin                                                                                                             g7.9s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ⠇ Container supla-db                                                                                                                                                                                                                                                 Startin                                                                                                             g8.0s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ⠏ Container supla-db                                                                                                                                                                                                                                                 Startin                                                                                                             g8.1s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ⠋ Container supla-db                                                                                                                                                                                                                                                 Startin                                                                                                             g8.2s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ⠙ Container supla-db                                                                                                                                                                                                                                                 Startin                                                                                                             g8.3s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 5/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                                                                                                                              Created                                                                                                             0.3s
 ✔ Volume "supla_supla-server-socket"                                                                                                                                                                                                                                 Created                                                                                                             0.0s
 ✔ Container supla-db                                                                                                                                                                                                                                                 Started                                                                                                             8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the dete                                                                                                             [+] Running 6/6orm (linux/arm/v8) and no specific platform was requested 0.0s
 ✔ Network supla_default                                                                                                                                 Cre...                         0.3s  ✔ Volume "supla_supla-server-socket"                                                                                                                    Created                        0.0s  ✔ Container supla-db                                                                                                                                    Starte...                      8.4s
 ! supla-db The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm/v8) and no specific platform was requested                                0.0s  ✔ Container supla-cloud                                                                                                                                 Sta...                         2.1s  ✔ Container supla-server                                                                                                                                St...                          4.2s
SUPLA containers has been started.
pi@raspberrypi:~ $
You do not have the required permissions to view the files attached to this post.

Return to “FAQ / Jak to zrobić”