Replies: 1 comment
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
关于docker-compose配置中,想要增加用户名和密码,应该怎么添加变量,试了试docker配置里面的参数,添加后无效,
把 - 'WEBDAV_AUTH_USER=xxx'
- 'WEBDAV_AUTH_PASSWORD=xxx'
换成
WEBDAV_USERNAME=
WEBDAV_PASSWORD=
也无效。添加的配置如下:
version: '3.3'
services:
aliyundrive-webdav:
container_name: aliyundrive-webdav
restart: unless-stopped
ports:
- '28080:8080'
environment:
- 'WEBDAV_AUTH_USER=xxx'
- 'WEBDAV_AUTH_PASSWORD=xxx'
- 'REFRESH_TOKEN=tokentoken'
image: messense/aliyundrive-webdav
Beta Was this translation helpful? Give feedback.
All reactions