add specs, reorganize docker-compose

This commit is contained in:
azpsen 2025-01-05 17:54:50 -06:00
parent 75b70669d3
commit 8618963175
2 changed files with 28 additions and 20 deletions

View File

@ -303,7 +303,24 @@ services:
- 100.111.0.126 - 100.111.0.126
restart: unless-stopped 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 (notes)
joplin: joplin:
@ -396,25 +413,6 @@ services:
target: /root/.config/glances/glances.pwd target: /root/.config/glances/glances.pwd
restart: unless-stopped 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 ----------------# #---------------- NETWORKING ----------------#

View File

@ -1,5 +1,15 @@
# Homelab # 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 ## Services
These are all the services hosted here, what they are for, and any clients I use with them. These are all the services hosted here, what they are for, and any clients I use with them.