dashy是一个开源的自托管的导航页配置服务,具有易于使用的可视化编辑器、状态检查、小工具和主题等功能。你可以将自己常用的一些网站聚合起来放在一起,形成自己的导航页。 下载docker-compose 可能需要修改的地方就是volumes的挂载路径。 1version: "3.8"2services:3 dashy:4 # To build from source, replace 'image: lissy93/dashy' with 'build: .'5 # build: .6 image: lissy93/dashy7 container_name: Dashy8 # Pass in your config file below, by specifying the path on your host machine9 volumes:10 - ./config.yml:/app/public/conf.yml # 这个挂载路径自己修改11 ports:12 - 4000:8013 # Set any environmental variables14 environment:15 - NODE_ENV=production12 collapsed lines16 # Specify your user ID and group ID. You can find this by running `id -u` and `id -g`17 - UID=100018 - GID=100019 # Specify restart policy20 restart: unless-stopped21 # Configure healthchecks22 healthcheck:23 test: ['CMD', 'node', '/app/services/healthcheck']24 interval: 1m30s25 timeout: 10s26 retries: 327 start_period: 40s 下载config.yml 1appConfig:2 language: cn # 设置中文3 auth:4 enableGuestAccess: false5 users: # 设置登录账号和权限6 - user: cirry7 hash: d2ae9eaa37003087axxxxxxxxxxxxxxxxxxx2be34987525ef1ce55a3079de09e8 type: admin9 - user: winnie10 hash: d2ae9eaa37003087aggggggggggggggggggggbe34987525ef1ce55a3079de09e11pageInfo:12 title: Home Lab13sections: # An array of sections14- name: Example Section15 icon: far fa-rocket17 collapsed lines16 items:17 - title: GitHub18 description: Dashy source code and docs19 icon: fab fa-github20 url: https://github.com/Lissy93/dashy21 - title: Issues22 description: View open issues, or raise a new one23 icon: fas fa-bug24 url: https://github.com/Lissy93/dashy/issues25- name: Local Services26 items:27 - title: Firewall28 icon: favicon29 url: http://192.168.1.1/30 - title: Game Server31 icon: https://i.ibb.co/710B3Yc/space-invader-x256.png32 url: http://192.168.130.1/ icon 可以配置路径,也可以配置font-awesome图标。