Portainer installieren

  • Hallo,


    wollte Portainer nutzen, bekomme es aber nicht zum laufen.

    Nach Erstellung des Portainer Container muss man das Passwort vergeben, soweit ist es klar.

    Danach gehe ich auf Local und Connect, dabei kommt eine Fehlermeldung.

    Was muss man an dieser Stelle beachten?

  • Am anderen PC war es länger sichtbar.

    Vermutlich eine Lappalie, ich bin bzgl. Docker ein totaler Anfänger.

    Aber man findet auch keine guten Webseiten mit Hinweisen und Anleitungen auf Deutsch finde ich.

    Klar geht Englisch auch, aber man tut sich nicht so leicht ...


    Das wäre der Fehler:


    pasted-from-clipboard.png

  • Das hier sollte weiterhelfen

    Zitat

    https://blog.feutl.com/blog/20…3-using-portainer-on-qnap

    Portainer needs to talk to the Container Station docker implementation, this is done using TLS via specific port on your NAS IP. We need to make some adjustments in the background to make this work and export the certificates.

    1. In the Container Station open Preferences > Docker Certificate
    2. Download the certificate to your PC by clicking the Download button
    3. Use an appropriate tool to unzip it.
    4. Upload the files to your NAS. Use the File Station or any available share
    5. Login to the NAS via SSH using the admin user
    6. Create the directory by execute mkdir -pv ~/.docker
    7. Copy the files from the share/folder to this directory cp /yourfolderwithfiles/ ~/.docker/
    8. After this execute export DOCKER_HOST=tcp://192.168.1.10:2376 DOCKER_TLS_VERIFY=1

    This is also described on the Docker Certificate site, slightly different but you should get the idea and the process.....

    Einmal editiert, zuletzt von nnead ()

  • Hi,

    meinen Portainer erstelle ich entweder per Putty mit folgendem Code.

    Code
    docker run -d -p 9000:9000 \
    --restart always \
    -v /share/docker/portainer:/data \
    -v /var/run/docker.sock:/var/run/docker.sock \
    -v /etc/localtime:/etc/localtime:ro \
    --name portainer \
    portainer/portainer:latest

    oder per ContainerStation

    Create -> Create Application

    Vielleicht hilft dir das weiter.


    Gruß Markus