diff --git a/airsonic/docker-compose.yml b/_archive/airsonic/docker-compose.yml similarity index 100% rename from airsonic/docker-compose.yml rename to _archive/airsonic/docker-compose.yml diff --git a/gpt-researcher/docker-compose.yml b/_archive/gpt-researcher/docker-compose.yml similarity index 100% rename from gpt-researcher/docker-compose.yml rename to _archive/gpt-researcher/docker-compose.yml diff --git a/navidrome/docker-compose.yml b/_archive/navidrome/docker-compose.yml similarity index 100% rename from navidrome/docker-compose.yml rename to _archive/navidrome/docker-compose.yml diff --git a/navidrome/navidrome.toml b/_archive/navidrome/navidrome.toml similarity index 100% rename from navidrome/navidrome.toml rename to _archive/navidrome/navidrome.toml diff --git a/paperless-ai/docker-compose.yml b/_archive/paperless-ai/docker-compose.yml similarity index 100% rename from paperless-ai/docker-compose.yml rename to _archive/paperless-ai/docker-compose.yml diff --git a/paperless-ngx/docker-compose.env b/_archive/paperless-ngx/docker-compose.env similarity index 100% rename from paperless-ngx/docker-compose.env rename to _archive/paperless-ngx/docker-compose.env diff --git a/paperless-ngx/docker-compose.yml b/_archive/paperless-ngx/docker-compose.yml similarity index 100% rename from paperless-ngx/docker-compose.yml rename to _archive/paperless-ngx/docker-compose.yml diff --git a/glance/config/glance.yml b/glance/config/glance.yml index d2ef81b..b116725 100644 --- a/glance/config/glance.yml +++ b/glance/config/glance.yml @@ -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 diff --git a/minio/docker-compose.yml b/minio/docker-compose.yml new file mode 100644 index 0000000..494ffd8 --- /dev/null +++ b/minio/docker-compose.yml @@ -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: