docker-compose.yml
· 240 B · YAML
Eredeti
services:
glance:
image: glanceapp/glance
volumes:
- /glance/glance.yml:/app/glance.yml
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- 8080:8080
restart: unless-stopped
| 1 | services: |
| 2 | glance: |
| 3 | image: glanceapp/glance |
| 4 | volumes: |
| 5 | - /glance/glance.yml:/app/glance.yml |
| 6 | - /etc/timezone:/etc/timezone:ro |
| 7 | - /etc/localtime:/etc/localtime:ro |
| 8 | ports: |
| 9 | - 8080:8080 |
| 10 | restart: unless-stopped |
glance.yml
· 1.7 KiB · YAML
Eredeti
pages:
- name: Home
columns:
- size: small
widgets:
- type: calendar
- type: rss
limit: 10
collapse-after: 3
cache: 3h
feeds:
- url: https://ciechanow.ski/atom.xml
- url: https://www.joshwcomeau.com/rss.xml
title: Josh Comeau
- url: https://samwho.dev/rss.xml
- url: https://awesomekling.github.io/feed.xml
- url: https://ishadeed.com/feed.xml
title: Ahmad Shadeed
- type: twitch-channels
channels:
- theprimeagen
- cohhcarnage
- christitustech
- blurbs
- asmongold
- jembawls
- size: full
widgets:
- type: hacker-news
- type: videos
channels:
- UCR-DXc1voovS8nhAvccRZhg # Jeff Geerling
- UCv6J_jJa8GJqFwQNgNrMuww # ServeTheHome
- UCOk-gHyjcWZNj3Br4oxwh0A # Techno Tim
- type: reddit
subreddit: selfhosted
- size: small
widgets:
- type: weather
location: London, United Kingdom
- type: markets
markets:
- symbol: SPY
name: S&P 500
- symbol: BTC-USD
name: Bitcoin
- symbol: NVDA
name: NVIDIA
- symbol: AAPL
name: Apple
- symbol: MSFT
name: Microsoft
- symbol: GOOGL
name: Google
- symbol: AMD
name: AMD
- symbol: RDDT
name: Reddit
| 1 | pages: |
| 2 | - name: Home |
| 3 | columns: |
| 4 | - size: small |
| 5 | widgets: |
| 6 | - type: calendar |
| 7 | |
| 8 | - type: rss |
| 9 | limit: 10 |
| 10 | collapse-after: 3 |
| 11 | cache: 3h |
| 12 | feeds: |
| 13 | - url: https://ciechanow.ski/atom.xml |
| 14 | - url: https://www.joshwcomeau.com/rss.xml |
| 15 | title: Josh Comeau |
| 16 | - url: https://samwho.dev/rss.xml |
| 17 | - url: https://awesomekling.github.io/feed.xml |
| 18 | - url: https://ishadeed.com/feed.xml |
| 19 | title: Ahmad Shadeed |
| 20 | |
| 21 | - type: twitch-channels |
| 22 | channels: |
| 23 | - theprimeagen |
| 24 | - cohhcarnage |
| 25 | - christitustech |
| 26 | - blurbs |
| 27 | - asmongold |
| 28 | - jembawls |
| 29 | |
| 30 | - size: full |
| 31 | widgets: |
| 32 | - type: hacker-news |
| 33 | |
| 34 | - type: videos |
| 35 | channels: |
| 36 | - UCR-DXc1voovS8nhAvccRZhg # Jeff Geerling |
| 37 | - UCv6J_jJa8GJqFwQNgNrMuww # ServeTheHome |
| 38 | - UCOk-gHyjcWZNj3Br4oxwh0A # Techno Tim |
| 39 | |
| 40 | - type: reddit |
| 41 | subreddit: selfhosted |
| 42 | |
| 43 | - size: small |
| 44 | widgets: |
| 45 | - type: weather |
| 46 | location: London, United Kingdom |
| 47 | |
| 48 | - type: markets |
| 49 | markets: |
| 50 | - symbol: SPY |
| 51 | name: S&P 500 |
| 52 | - symbol: BTC-USD |
| 53 | name: Bitcoin |
| 54 | - symbol: NVDA |
| 55 | name: NVIDIA |
| 56 | - symbol: AAPL |
| 57 | name: Apple |
| 58 | - symbol: MSFT |
| 59 | name: Microsoft |
| 60 | - symbol: GOOGL |
| 61 | name: Google |
| 62 | - symbol: AMD |
| 63 | name: AMD |
| 64 | - symbol: RDDT |
| 65 | name: Reddit |