From 6b0d655be02184d2738ce89242b8cae9c1fe966b Mon Sep 17 00:00:00 2001 From: Philip Ulrich Date: Fri, 5 May 2017 22:22:48 -0500 Subject: [PATCH] fixes portainer password issues in mailcow/mailcow-dockerized#228 password setting had no persistent storage. added persistent storage per official compose docs: https://github.com/portainer/portainer-compose/blob/master/docker-compose.yml I believe this issue lies from the fact that originally the dockerized version of portainer used http auth, but switched to app auth. Docs were never updated. --- docs/portainer.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/portainer.md b/docs/portainer.md index 7dba226dd..fe9f2ed7a 100644 --- a/docs/portainer.md +++ b/docs/portainer.md @@ -6,6 +6,7 @@ In order to enable Portainer, the docker-compose.yml and site.conf for nginx mus image: portainer/portainer volumes: - /var/run/docker.sock:/var/run/docker.sock + - /opt/portainer/data:/data restart: always dns: - 172.22.1.254