You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
632 B
20 lines
632 B
[PANIC]Error processing environment variables: envconfig.Process: assigning S3_USE_AWS_MANAGED_IAM to S3UseAwsManagedIam: converting '' to type bool. details: strconv.ParseBool: parsing "": invalid syntax
|
|
|
|
|
|
方法:
|
|
https://github.com/langgenius/dify/issues/18284
|
|
|
|
1、Modify your .env file to include default values:
|
|
|
|
PLUGIN_S3_USE_AWS_MANAGED_IAM=false
|
|
PLUGIN_S3_USE_PATH_STYLE=false
|
|
|
|
2、Update your docker-compose.yaml file to include default values:
|
|
|
|
plugin_daemon:
|
|
environment:
|
|
S3_USE_AWS_MANAGED_IAM: ${PLUGIN_S3_USE_AWS_MANAGED_IAM:-false}
|
|
|
|
重新启动:
|
|
docker compose down
|
|
docker compose up -d |