mirror of
https://github.com/koodo-reader/koodo-reader.git
synced 2026-06-18 04:40:11 -04:00
- Added new Chinese translations for export prompts, trial information, and folder selection. - Updated the AboutDialog component to remove success toast on export. - Enhanced the setting dialog with new account login tips. - Modified the SortDialog to fetch notes after sorting and improved sorting UI. - Updated ImportLocal component to truncate book names in success/error messages. - Added a title for tags in the NoteTag component. - Adjusted styles in various components for better UI consistency. - Implemented sorting functionality for notes based on user preferences. - Updated the ConfigUtil to support sorting notes by key or percentage. - Enhanced the export functionality to handle large book exports in Electron.
22 lines
603 B
YAML
22 lines
603 B
YAML
# This docker-compose file uses secrets to manage sensitive information like passwords.
|
|
services:
|
|
koodo-reader:
|
|
image: ghcr.io/koodo-reader/koodo-reader:master
|
|
container_name: koodo-reader
|
|
restart: unless-stopped
|
|
ports:
|
|
- "80:80"
|
|
- "8080:8080"
|
|
environment:
|
|
- SERVER_USERNAME=${SERVER_USERNAME:-admin}
|
|
- SERVER_PASSWORD_FILE=${SERVER_PASSWORD_FILE:-my_secret}
|
|
- ENABLE_HTTP_SERVER=false
|
|
volumes:
|
|
# 使用主机目录(推荐)
|
|
- /opt/uploads:/app/uploads
|
|
secrets:
|
|
- my_secret
|
|
secrets:
|
|
my_secret:
|
|
file: ./my_secret.txt
|