Limour

Limour

临床医学在读。

[Record] Lightweight Personal Navigation Page Flare

Flare is a lightweight, fast, and beautiful personal navigation page, suitable for HomeLab or other privacy-focused scenarios.

mkdir -p ~/app/flare && cd ~/app/flare && nano docker-compose.yml
sudo docker-compose up -d # flare:5005
sudo docker-compose logs # Get login password
version: '3.6'
 
services:
  flare:
    image: soulteary/flare
    restart: always
    # No additional parameters are required by default. If there are special requirements,
    # please read the documentation at https://github.com/soulteary/docker-flare/blob/main/docs/advanced-startup.md
    # Enable account login mode
    command: flare --disable_login=0
    environment:
      # To enable user login mode, you need to set the `nologin` startup parameter to `0` first
      # If `nologin` is enabled and FLARE_USER is not set, the default user is `flare`
      - FLARE_USER=LimourFlare
      # Specify your own account password. The default generated password is weak
      - FLARE_PASS=your_password
      - FLARE_OFFLINE=1
      - FLARE_MINI_REQUEST=1
    volumes:
      - ./app:/app
 
networks:
  default:
    external: true
    name: ngpm
Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.