glanceapp / glance
- воскресенье, 12 мая 2024 г. в 00:00:08
A self-hosted dashboard that puts all your feeds in one place
What if you could see everything at a...
Install • Configuration • Themes
Checkout the configuration docs to learn more. A preconfigured page is also available to get you started quickly.
Caution
The project is under active development, expect things to break every once in a while.
Checkout the releases page for available binaries. You can place the binary inside /opt/glance/
and have it start with your server via a systemd service. To specify a different path for the config file use the --config
option:
/opt/glance/glance --config /etc/glance.yml
Important
Make sure you have a valid glance.yml
file before running the container.
docker run -d -p 8080:8080 \
-v ./glance.yml:/app/glance.yml \
-v /etc/timezone:/etc/timezone:ro \
-v /etc/localtime:/etc/localtime:ro \
glanceapp/glance
Or if you prefer docker compose:
services:
glance:
image: glanceapp/glance
volumes:
- ./glance.yml:/app/glance.yml
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- 8080:8080
restart: unless-stopped
Requirements: Go >= v1.22
To build:
go build .
To run:
go run .