checking in
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 39s

This commit is contained in:
geezo 2025-04-19 21:26:24 +00:00
parent 8bbbee3e2a
commit 162441f586
9 changed files with 28 additions and 15 deletions

View File

@ -105,7 +105,10 @@ pages:
subreddit: n8n
show-thumbnails: true
- type: reddit
subreddit: n8n
subreddit: kubernetes
show-thumbnails: true
- type: reddit
subreddit: rag
show-thumbnails: true
- type: videos
@ -187,23 +190,17 @@ pages:
title: News Feeds
widgets:
- type: rss
title: Local News
style: horizontal-cards
title: Quartz
style: grid-cards
feeds:
- url: https://rss.app/feeds/zGtl0lQuVVN1ew1Y.xml
title: NY Times
- url: https://qz.com/rss
title: Quartz
- type: rss
title: US News
style: horizontal-cards
title: AP
style: grid-cards
feeds:
- url: https://rss.nytimes.com/services/xml/rss/nyt/US.xml
title: NY Times
- type: rss
title: World News
style: horizontal-cards
feeds:
- url: https://rss.nytimes.com/services/xml/rss/nyt/Politics.xml
title: NY Times
- url: https://news.google.com/rss/search?q=when:24h+allinurl:apnews.com
title: AP
- type: videos
style: grid-cards

16
minio/docker-compose.yml Normal file
View File

@ -0,0 +1,16 @@
services:
minio:
image: quay.io/minio/minio:RELEASE.2023-11-01T01-57-10Z-cpuv1
container_name: minio
ports:
- "9001:9000"
- "9091:9090"
volumes:
- minio_data:/data
environment:
MINIO_ROOT_USER: "geezo"
MINIO_ROOT_PASSWORD: "#4famakin"
command: server /data --console-address ":9090"
volumes:
minio_data: