From 8618963175f301535500d18ddde06cfbc9b6fca6 Mon Sep 17 00:00:00 2001 From: azpsen Date: Sun, 5 Jan 2025 17:54:50 -0600 Subject: [PATCH] add specs, reorganize docker-compose --- docker-compose.yml | 38 ++++++++++++++++++-------------------- readme.md | 10 ++++++++++ 2 files changed, 28 insertions(+), 20 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index ae8053a..53039c5 100755 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -303,7 +303,24 @@ services: - 100.111.0.126 restart: unless-stopped -#---------------- UTILITIES ----------------# + ## Calibre (ebook management) + calibre-web: + image: lscr.io/linuxserver/calibre-web:latest + container_name: calibre-web + environment: + - PUID=1000 + - PGID=1000 + - TZ=America/Chicago + - DOCKER_MODS=linuxserver/mods:universal-calibre #optional + - OAUTHLIB_RELAX_TOKEN_SCOPE=1 #optional + volumes: + - /docker/calibre/config:/config + - /docker/calibre/books:/books + ports: + - 8083:8083 + dns: + - 100.111.0.126 + restart: unless-stopped ## Joplin (notes) joplin: @@ -396,25 +413,6 @@ services: target: /root/.config/glances/glances.pwd restart: unless-stopped - ## Calibre (ebook management) - calibre-web: - image: lscr.io/linuxserver/calibre-web:latest - container_name: calibre-web - environment: - - PUID=1000 - - PGID=1000 - - TZ=America/Chicago - - DOCKER_MODS=linuxserver/mods:universal-calibre #optional - - OAUTHLIB_RELAX_TOKEN_SCOPE=1 #optional - volumes: - - /docker/calibre/config:/config - - /docker/calibre/books:/books - ports: - - 8083:8083 - dns: - - 100.111.0.126 - restart: unless-stopped - #---------------- NETWORKING ----------------# diff --git a/readme.md b/readme.md index 44350b9..4b53158 100644 --- a/readme.md +++ b/readme.md @@ -1,5 +1,15 @@ # Homelab +I have a dedicated home server that I run a lot of services on. This repo has my monolithic `docker-compose.yml` plus info about what I run. + +| | | +| --- | ------------------- | +| CPU | Intel i3-7100 | +| RAM | 32GB | +| SSD | 512GB | +| HDD | 3x10TB RAID-Z Array | +| OS | Debian | + ## Services These are all the services hosted here, what they are for, and any clients I use with them.