Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

[Support] jj9987 - Portainer

Featured Replies

Portainer-banner.png

Application: Portainer @ https://portainer.io/
DockerHub:https://hub.docker.com/r/portainer/portainer/
GitHub: https://github.com/juusujanar/unraid-templates/blob/master/Portainer.xml

 

This template uses the official Portainer Docker image to quickly set up a Portainer instance. It is used for graphical Docker management and gives more information than unRAID itself.

 

If you have any issues/questions/suggestions regarding this Docker or the template, feel free to contact here.

Edited by jj9987

Thanks! easy to install, easy to set up. Liking it so far!

I really like this setup but I have a question. Under volumes, it says I have 170 unused volumes? Is there a way to tell what these volumes contain?

  • Author
On 26/02/2018 at 2:21 AM, ucliker said:

I really like this setup but I have a question. Under volumes, it says I have 170 unused volumes? Is there a way to tell what these volumes contain?

It shows all the Docker volumes, that you can usually see with "docker volume list". By default these get mounted to /var/lib/docker/volumes/[volume id]/_data and are used by the container internally. More on Docker volumes.

  • 2 months later...

Looks cool but I cant seem to get it to run. Just dies with a (1) and a 

no such device

Error

  • 2 weeks later...
On 5/13/2018 at 10:15 PM, Darqfallen said:

Looks cool but I cant seem to get it to run. Just dies with a (1) and a 


no such device

Error

 

Same here.

  • 2 months later...

What is the default user account and password for Portainer?   I tried passing in --no-auth as an additional argument but I can not get past the login page for the WebUI.

 

Thank You.

  • 5 months later...

As of July 4th this is still an issue.

 

Without the ''--no-auth" flag (in post-arguments not additional) it asks for username and password (of which no sane default combination seems to work; with this argument it asks you to set one but fails, as auth is disabled, but goes no further. I have deleted the entire `/mnt/user/appdata/portainer` folder and still no joy for either method.

  • 8 months later...

I installed the docker and was able to change my password but it won't actually connect to anything within UNRaid's dockers? 
image.png.6e2ffb02e049574af392538d82471cea.png
Anyone have any ideas?

  • 6 months later...

The version 1.24 with the repo is deprecated. The new version of portainer 2.0 is published in portainer/portainer-ce. Can you change the template ?

Can i update the container when i change the "Repository" from portainer/portainer to portainer/portainer-ce ? 

 

Here the note from Docker Hub / Portainer:

NOTE, This repo, portainer/portainer is the home of Portainer v1.24.x, and is now deprecated; all new releases for Portainer 2.0 will be published in portainer/portainer-ce

Edited by Thorsten

  • 3 weeks later...
On 9/30/2020 at 4:58 AM, Thorsten said:

The version 1.24 with the repo is deprecated. The new version of portainer 2.0 is published in portainer/portainer-ce. Can you change the template ?

Can i update the container when i change the "Repository" from portainer/portainer to portainer/portainer-ce ? 

 

Here the note from Docker Hub / Portainer:

NOTE, This repo, portainer/portainer is the home of Portainer v1.24.x, and is now deprecated; all new releases for Portainer 2.0 will be published in portainer/portainer-ce

I just edited the repo to be portainer-ce and it upgraded just fine.

  • 3 months later...

This template's docker-compose is limited to versions below 3 because it actually uses libcompose to interpret the docker-compose.yml scripts which is limited:

 

image.png.ed14da0f0c5ccfeba1a38ed495752a90.png

 

I got it to work using a recent Beta that supports version 3 of docker-compose scripts because it uses the actual docker-compose binary:

 

image.png.8aa529eaf74f95e842e106ee27f1992b.png

 

I just had to change:

 

Repository -> portainerci/portainer:2.1

Docker Hub URL -> https://registry.hub.docker.com/r/portainerci/portainer/

 

image.png.09ac631ebcf9aa9003a23aee127cdc08.png

 

Now I can use modern deployment stacks for stuff like discourse and artifactory.

 

image.png.dabf172444e9027c4fbdfb35eddaafb0.png

 

image.png.5d0c82193bdce94f8c960b45f38a09d3.png

 

 

image.png.9c01b4233eaa5dd4c13e5148da656bf6.png

Edited by frakman1

On 1/17/2019 at 3:41 PM, SFyffe said:

What is the default user account and password for Portainer?   I tried passing in --no-auth as an additional argument but I can not get past the login page for the WebUI.

 

Thank You.

@SFyffe

There is no default password. You get to set it when you first log in. The username is still admin.

 

If you still can't get it to work (you already set it to something but forgot it), you can reset it like this:

1- Stop the Portainer Container

2- Run:

 

$ docker run --rm -v portainer_data:/data portainer/helper-reset-password
Unable to find image 'portainer/helper-reset-password:latest' locally
latest: Pulling from portainer/helper-reset-password
79916c70cb9e: Pull complete
93e26fa95550: Pull complete
Digest: sha256:735a809b1bfe14b5fae340d4b350bae97c2016371c47fb6e34d71a45e4512f79
Status: Downloaded newer image for portainer/helper-reset-password:latest
2021/01/31 23:53:17 Password succesfully updated for user: admin
2021/01/31 23:53:17 Use the following password to login: 825GwA.n~i(he*dF1)7BkXg3}0Z+Vj9{

 

3- Start the Portainer Container and login with the above credentials

 

Edited by frakman1

12 hours ago, frakman1 said:

This template's docker-compose is limited to versions below 3 because it actually uses libcompose to interpret the docker-compose.yml scripts which is limited:

 

image.png.ed14da0f0c5ccfeba1a38ed495752a90.png

 

I got it to work using a recent Beta that supports version 3 of docker-compose scripts because it uses the actual docker-compose binary:

 

image.png.8aa529eaf74f95e842e106ee27f1992b.png

 

I just had to change:

 

Repository -> portainerci/portainer:2.1

Docker Hub URL -> https://registry.hub.docker.com/r/portainerci/portainer/

 

image.png.09ac631ebcf9aa9003a23aee127cdc08.png

 

Now I can use modern deployment stacks for stuff like discourse and artifactory.

 

image.png.dabf172444e9027c4fbdfb35eddaafb0.png

 

image.png.5d0c82193bdce94f8c960b45f38a09d3.png

 

 

image.png.9c01b4233eaa5dd4c13e5148da656bf6.png

How do you use docker compose with this? I have the beta installed like you instructed in this post.

17 hours ago, ffhelllskjdje said:

How do you use docker compose with this? I have the beta installed like you instructed in this post.

 

Click on Stacks in left frame.

 

image.png.694dfaa6f54cd087c653e9244760b464.png

 

Then click on Add Stack

 

image.png.f6ba2ba30a8a698e6225a75b0df47126.png

 

Give it a name and use the default Web Editor to paste your docker-compose.yml file

 

image.png.f829e72a1b015971e452b8737c3db7da.png

  • 2 months later...

Will the CA template get upgraded to 2.x anytime soon?

  • 3 months later...
On 4/3/2021 at 12:08 PM, Glassed Silver said:

Will the CA template get upgraded to 2.x anytime soon?

 

Changing the repository to portainer/portainer-ce worked for me.  I have 2.6.1 running now.

  • 2 months later...

im trying to reset my password but i keep getting unable to locate /datat/portainer.db on disk

 

any suggestions?

  • 2 years later...
On 10/25/2021 at 2:14 AM, OmegaXis said:

im trying to reset my password but i keep getting unable to locate /datat/portainer.db on disk

 

any suggestions?

docker run --rm -v /mnt/user/appdata/portainer:/data portainer/helper-reset-password

  • 10 months later...

Sorry, but I just installed the app and can't set or reset my credentials. Is there a way to upload my own app as this one is just rubbish?

I don't know what the default credentials are and when I try to reset the password I get the following error message "Unable to locate /data/portainer.db on disk".

Edited by Tafa

  • 1 month later...

I wasn't able to login to my Portainer app so I ran docker run --rm -v /mnt/user/appdata/portainer:/data portainer/helper-reset-password

 

It gave me a new password but when I try to login with it I get an error stating "Unable to retrieve user details: Unauthorized"

 

Edited by CleverCompiler
clarification

  • 2 months later...

Dear all,

im trying to understand the Storage Path,

if i create a Volume in Portainer it creates it in /var/lib/docker/volumes instead of /mnt/user/appdata/portainer

what can i do to tell the agent to create it in /mnt/user/appdata/portainer?

 

grafik.png.1cbf689a11469926713c08963d4d8e1d.png

grafik.png.cd326a0450bb0987f64b2a9af568475f.png

 

Thank you :)

  • 1 month later...

Hello, 

 

 i have problems with custom templates.

 

If i change custom templates path to some of the internet templates on github with json.

 

No app wil work, not get the build screen, just click on template a and the template will only flash open the build screen and then goes back, no error, just nothing open.

  • 2 weeks later...
On 3/28/2025 at 3:40 PM, oggiee said:

Hello, 

 

 i have problems with custom templates.

 

If i change custom templates path to some of the internet templates on github with json.

 

No app wil work, not get the build screen, just click on template a and the template will only flash open the build screen and then goes back, no error, just nothing open.

Its because portainer needs v3 and the one i assume you are using is v2 templates

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.