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.
Dieser Commit ist enthalten in:
Philip Ulrich 2017-05-05 22:22:48 -05:00 committet von GitHub
Ursprung 3473b9842d
Commit 6b0d655be0

Datei anzeigen

@ -6,6 +6,7 @@ In order to enable Portainer, the docker-compose.yml and site.conf for nginx mus
image: portainer/portainer image: portainer/portainer
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock
- /opt/portainer/data:/data
restart: always restart: always
dns: dns:
- 172.22.1.254 - 172.22.1.254