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:
Ursprung
3473b9842d
Commit
6b0d655be0
1 geänderte Dateien mit 1 neuen und 0 gelöschten Zeilen
|
@ -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
|
||||
|
|
Laden …
In neuem Issue referenzieren