Files
koodo-reader/docker-compose-secret.yml
troyeguo 65d07ab821 feat: add new translations and UI improvements
- 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.
2026-02-07 17:41:07 +08:00

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