Compare commits
19 Commits
f0ec9c7a4a
...
main
Author | SHA1 | Date | |
---|---|---|---|
![]() |
22d9444d0f | ||
![]() |
15c10fa570 | ||
![]() |
8501b5f381 | ||
![]() |
649e019028 | ||
![]() |
e637e839c0 | ||
![]() |
658285f13c | ||
![]() |
35790d786b | ||
![]() |
3ae1187928 | ||
![]() |
961c894a5e | ||
![]() |
d64b5504e0 | ||
![]() |
e50817db0c | ||
![]() |
18d251f09f | ||
![]() |
af37f66fbe | ||
![]() |
1bfd569816 | ||
![]() |
806a5812a0 | ||
![]() |
2ac8df2a1f | ||
![]() |
6866d75e3b | ||
![]() |
1af6a726fb | ||
![]() |
6025d8ec78 |
18
.env
18
.env
@@ -9,3 +9,21 @@ DNS_IP=100.111.0.126
|
|||||||
|
|
||||||
# Time zone
|
# Time zone
|
||||||
TZ=America/Chicago
|
TZ=America/Chicago
|
||||||
|
|
||||||
|
# Jellyfin directories
|
||||||
|
JF_MOVIES=/media/jf/movies
|
||||||
|
JF_SHOWS=/media/jf/shows
|
||||||
|
JF_MUSIC=/media/jf/music
|
||||||
|
|
||||||
|
# Immich directories
|
||||||
|
IMMICH_LIBRARY=/media/immich
|
||||||
|
|
||||||
|
# Kiwix directories
|
||||||
|
KIWIX_DIR=/media/kiwix
|
||||||
|
|
||||||
|
# qBittorrent directories
|
||||||
|
QB_EXT_DL=/media/dl
|
||||||
|
|
||||||
|
# Audiobookshelf directories
|
||||||
|
ABS_BOOKS=/media/abs/audiobooks
|
||||||
|
ABS_PODS=/media/abs/podcasts
|
||||||
|
@@ -13,9 +13,8 @@ services:
|
|||||||
ports:
|
ports:
|
||||||
- 13378:80
|
- 13378:80
|
||||||
volumes:
|
volumes:
|
||||||
- /media/audiobooks:/audiobooks
|
- ${ABS_BOOKS}:/audiobooks
|
||||||
- /media/audiobooks-pt:/audiobooks-pt
|
- ${ABS_PODS}:/podcasts
|
||||||
- /media/podcasts:/podcasts
|
|
||||||
- ${DOCKER_DIR}/audiobookshelf/config:/config
|
- ${DOCKER_DIR}/audiobookshelf/config:/config
|
||||||
- ${DOCKER_DIR}/audiobookshelf/metadata:/metadata
|
- ${DOCKER_DIR}/audiobookshelf/metadata:/metadata
|
||||||
dns:
|
dns:
|
||||||
@@ -31,42 +30,23 @@ services:
|
|||||||
- ${DNS_IP}
|
- ${DNS_IP}
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
# Calibre (ebook management)
|
|
||||||
calibre-web-automated:
|
|
||||||
image: crocodilestick/calibre-web-automated:latest
|
|
||||||
container_name: calibre-web
|
|
||||||
environment:
|
|
||||||
- ${TZ}
|
|
||||||
- PUID=1000
|
|
||||||
- PGID=100
|
|
||||||
- DOCKER_MODS=lscr.io/linuxserver/mods:universal-calibre-v7.16.0
|
|
||||||
volumes:
|
|
||||||
- ${DOCKER_DIR}/calibre/config:/config
|
|
||||||
- ${DOCKER_DIR}/calibre/ingest:/cwa-book-ingest
|
|
||||||
- ${DOCKER_DIR}/calibre/books:/calibre-library
|
|
||||||
ports:
|
|
||||||
- 8083:8083
|
|
||||||
dns:
|
|
||||||
- ${DNS_IP}
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
## Immich (photo library management)
|
## Immich (photo library management)
|
||||||
immich-server:
|
immich_server:
|
||||||
container_name: immich_server
|
container_name: immich_server
|
||||||
image: ghcr.io/immich-app/immich-server:v1.129.0
|
image: ghcr.io/immich-app/immich-server:v1.132.1
|
||||||
volumes:
|
volumes:
|
||||||
- /media/immich:/usr/src/app/upload
|
- ${IMMICH_LIBRARY}:/usr/src/app/upload
|
||||||
- ${DOCKER_DIR}/immich_db_dump:/db_dump
|
|
||||||
env_file:
|
env_file:
|
||||||
- ${ENV_DIR}/immich.env
|
- ${ENV_DIR}/immich.env
|
||||||
environment:
|
environment:
|
||||||
|
- TZ=${TZ}
|
||||||
- PUID=1000
|
- PUID=1000
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
ports:
|
ports:
|
||||||
- 2283:2283
|
- 2283:2283
|
||||||
depends_on:
|
depends_on:
|
||||||
- redis
|
- immich_redis
|
||||||
- database
|
- immich_db
|
||||||
devices:
|
devices:
|
||||||
- /dev/dri:/dev/dri
|
- /dev/dri:/dev/dri
|
||||||
dns:
|
dns:
|
||||||
@@ -74,18 +54,18 @@ services:
|
|||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
immich-machine-learning:
|
immich-machine-learning:
|
||||||
container_name: immich_machine_learning
|
container_name: immich_machine_learning
|
||||||
image: ghcr.io/immich-app/immich-machine-learning:v1.129.0
|
image: ghcr.io/immich-app/immich-machine-learning:v1.132.1
|
||||||
volumes:
|
volumes:
|
||||||
- model-cache:/cache
|
- model-cache:/cache
|
||||||
env_file:
|
env_file:
|
||||||
- ${ENV_DIR}/immich.env
|
- ${ENV_DIR}/immich.env
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
redis:
|
immich_redis:
|
||||||
container_name: immich_redis
|
container_name: immich_redis
|
||||||
image: redis:6.2-alpine@sha256:70a7a5b641117670beae0d80658430853896b5ef269ccf00d1827427e3263fa3
|
image: redis:6.2-alpine@sha256:70a7a5b641117670beae0d80658430853896b5ef269ccf00d1827427e3263fa3
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
database:
|
immich_db:
|
||||||
container_name: immich_postgres
|
container_name: immich_db
|
||||||
image: tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
|
image: tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
|
||||||
env_file:
|
env_file:
|
||||||
- ${ENV_DIR}/immich.env
|
- ${ENV_DIR}/immich.env
|
||||||
@@ -95,8 +75,8 @@ services:
|
|||||||
|
|
||||||
## Invidious (youtube client)
|
## Invidious (youtube client)
|
||||||
invidious:
|
invidious:
|
||||||
image: quay.io/invidious/invidious:latest
|
|
||||||
container_name: invidious
|
container_name: invidious
|
||||||
|
image: quay.io/invidious/invidious:latest
|
||||||
ports:
|
ports:
|
||||||
- 9080:3000
|
- 9080:3000
|
||||||
env_file:
|
env_file:
|
||||||
@@ -111,8 +91,8 @@ services:
|
|||||||
- invidious-sighelper
|
- invidious-sighelper
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
invidious-sighelper:
|
invidious-sighelper:
|
||||||
image: quay.io/invidious/inv-sig-helper:latest
|
|
||||||
container_name: invidious-sighelper
|
container_name: invidious-sighelper
|
||||||
|
image: quay.io/invidious/inv-sig-helper:latest
|
||||||
init: true
|
init: true
|
||||||
command: ["--tcp", "0.0.0.0:12999"]
|
command: ["--tcp", "0.0.0.0:12999"]
|
||||||
ports:
|
ports:
|
||||||
@@ -126,8 +106,8 @@ services:
|
|||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
invidious-db:
|
invidious-db:
|
||||||
image: docker.io/library/postgres:14
|
|
||||||
container_name: invidious-db
|
container_name: invidious-db
|
||||||
|
image: docker.io/library/postgres:14
|
||||||
volumes:
|
volumes:
|
||||||
- ${DOCKER_DIR}/invidious/data:/var/lib/postgresql/data
|
- ${DOCKER_DIR}/invidious/data:/var/lib/postgresql/data
|
||||||
- ${DOCKER_DIR}/invidious/config/sql:/config/sql
|
- ${DOCKER_DIR}/invidious/config/sql:/config/sql
|
||||||
@@ -138,19 +118,19 @@ services:
|
|||||||
|
|
||||||
## Jellyfin (media server)
|
## Jellyfin (media server)
|
||||||
jellyfin:
|
jellyfin:
|
||||||
image: lscr.io/linuxserver/jellyfin:latest
|
|
||||||
container_name: jellyfin
|
container_name: jellyfin
|
||||||
|
image: lscr.io/linuxserver/jellyfin:latest
|
||||||
environment:
|
environment:
|
||||||
- ${TZ}
|
- TZ=${TZ}
|
||||||
- PUID=1000
|
- PUID=1000
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
- JELLYFIN_PublishedServerUrl=https://watch.azpsen.com
|
- JELLYFIN_PublishedServerUrl=https://watch.azpsen.com
|
||||||
volumes:
|
volumes:
|
||||||
- ${DOCKER_DIR}/jellyfin:/config
|
- ${DOCKER_DIR}/jellyfin:/config
|
||||||
- ${DOCKER_DIR}/jellyfin/theme:/usr/share/jellyfin/web/theme
|
- ${DOCKER_DIR}/jellyfin/theme:/usr/share/jellyfin/web/theme
|
||||||
- /media/jellyfin/Movies:/data/movies
|
- ${JF_MOVIES}:/data/movies
|
||||||
- /media/jellyfin/TV Shows:/data/tvshows
|
- ${JF_SHOWS}:/data/tvshows
|
||||||
- /media/jellyfin/Music:/data/music
|
- ${JF_MUSIC}:/data/music
|
||||||
ports:
|
ports:
|
||||||
- 8096:8096
|
- 8096:8096
|
||||||
- 7539:7539/udp
|
- 7539:7539/udp
|
||||||
@@ -165,9 +145,9 @@ services:
|
|||||||
#---------------- UTILITIES ----------------#
|
#---------------- UTILITIES ----------------#
|
||||||
|
|
||||||
## Actual (budget)
|
## Actual (budget)
|
||||||
actual_server:
|
actual:
|
||||||
image: docker.io/actualbudget/actual-server:latest
|
|
||||||
container_name: actual
|
container_name: actual
|
||||||
|
image: docker.io/actualbudget/actual-server:latest
|
||||||
ports:
|
ports:
|
||||||
- 5006:5006
|
- 5006:5006
|
||||||
volumes:
|
volumes:
|
||||||
@@ -176,10 +156,43 @@ services:
|
|||||||
- ${DNS_IP}
|
- ${DNS_IP}
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
|
## Baikal (calendar/contacts)
|
||||||
|
baikal:
|
||||||
|
container_name: baikal
|
||||||
|
image: ckulka/baikal:nginx
|
||||||
|
ports:
|
||||||
|
- 8391:80
|
||||||
|
volumes:
|
||||||
|
- ${DOCKER_DIR}/baikal/config:/var/www/baikal/config
|
||||||
|
- ${DOCKER_DIR}/baikal/data:/var/www/baikal/Specific
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
## Backrest (backup GUI)
|
||||||
|
backrest:
|
||||||
|
container_name: backrest
|
||||||
|
image: garethgeorge/backrest:latest
|
||||||
|
hostname: backrest
|
||||||
|
volumes:
|
||||||
|
- ${DOCKER_DIR}/backrest/data:/data
|
||||||
|
- ${DOCKER_DIR}/backrest/config:/config
|
||||||
|
- ${DOCKER_DIR}/backrest/cache:/cache
|
||||||
|
- ${DOCKER_DIR}/backrest/tmp:/tmp
|
||||||
|
- ${DOCKER_DIR}:/userdata/docker
|
||||||
|
- ${IMMICH_LIBRARY}:/userdata/immich
|
||||||
|
environment:
|
||||||
|
- BACKREST_DATA=/data
|
||||||
|
- BACKREST_CONFIG=/config/config.json
|
||||||
|
- XDG_CACHE_HOME=/cache
|
||||||
|
- TMPDIR=/tmp
|
||||||
|
- TZ=${TZ}
|
||||||
|
ports:
|
||||||
|
- 9898:9898
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
## ConvertX (file converter)
|
## ConvertX (file converter)
|
||||||
convertx:
|
convertx:
|
||||||
image: ghcr.io/c4illin/convertx
|
|
||||||
container_name: convertx
|
container_name: convertx
|
||||||
|
image: ghcr.io/c4illin/convertx
|
||||||
ports:
|
ports:
|
||||||
- 9132:3000
|
- 9132:3000
|
||||||
volumes:
|
volumes:
|
||||||
@@ -191,22 +204,10 @@ services:
|
|||||||
- PGID=1000
|
- PGID=1000
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
## Dumbpad (simple notes)
|
|
||||||
dumbpad:
|
|
||||||
image: dumbwareio/dumbpad:latest
|
|
||||||
container_name: dumbpad
|
|
||||||
ports:
|
|
||||||
- 3007:3000
|
|
||||||
volumes:
|
|
||||||
- ${DOCKER_DIR}/dumbpad:/app/data
|
|
||||||
env_file:
|
|
||||||
- ${ENV_DIR}/dumbpad.env
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
## Gitea
|
## Gitea
|
||||||
gitea:
|
gitea:
|
||||||
image: docker.io/gitea/gitea:latest-rootless
|
|
||||||
container_name: gitea
|
container_name: gitea
|
||||||
|
image: docker.io/gitea/gitea:latest-rootless
|
||||||
user: "1001"
|
user: "1001"
|
||||||
volumes:
|
volumes:
|
||||||
- ${DOCKER_DIR}/gitea/data:/var/lib/gitea
|
- ${DOCKER_DIR}/gitea/data:/var/lib/gitea
|
||||||
@@ -220,95 +221,20 @@ services:
|
|||||||
- ${DNS_IP}
|
- ${DNS_IP}
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
## Grocy (home inventory management)
|
## IT Tools (misc utilities)
|
||||||
grocy:
|
it-tools:
|
||||||
container_name: grocy
|
container_name: it-tools
|
||||||
image: lscr.io/linuxserver/grocy:latest
|
image: corentinth/it-tools:latest
|
||||||
environment:
|
|
||||||
- ${TZ}
|
|
||||||
- PUID=1000
|
|
||||||
- PGID=1000
|
|
||||||
volumes:
|
|
||||||
- ${DOCKER_DIR}/grocy:/config
|
|
||||||
ports:
|
ports:
|
||||||
- 9283:80
|
- 5734:80
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
## Hoarder (link aggregator)
|
|
||||||
hoarder:
|
|
||||||
image: ghcr.io/hoarder-app/hoarder:release
|
|
||||||
container_name: hoarder
|
|
||||||
env_file:
|
|
||||||
- ${ENV_DIR}/hoarder.env
|
|
||||||
volumes:
|
|
||||||
- hoarder:/data
|
|
||||||
ports:
|
|
||||||
- 3017:3000
|
|
||||||
environment:
|
|
||||||
- MEILI_ADDR=http://meilisearch:7700
|
|
||||||
- BROWSER_WEB_URL=http://chrome:9222
|
|
||||||
- DATA_DIR=/data
|
|
||||||
dns:
|
|
||||||
- ${DNS_IP}
|
|
||||||
restart: unless-stopped
|
|
||||||
chrome:
|
|
||||||
image: gcr.io/zenika-hub/alpine-chrome:123
|
|
||||||
container_name: chrome
|
|
||||||
command:
|
|
||||||
- --no-sandbox
|
|
||||||
- --disable-gpu
|
|
||||||
- --disable-dev-shm-usage
|
|
||||||
- --remote-debugging-address=0.0.0.0
|
|
||||||
- --remote-debugging-port=9222
|
|
||||||
- --hide-scrollbars
|
|
||||||
dns:
|
|
||||||
- ${DNS_IP}
|
|
||||||
restart: unless-stopped
|
|
||||||
meilisearch:
|
|
||||||
image: getmeili/meilisearch:v1.11.1
|
|
||||||
container_name: meilisearch
|
|
||||||
env_file:
|
|
||||||
- ${ENV_DIR}/hoarder.env
|
|
||||||
ports:
|
|
||||||
- 7700:7700
|
|
||||||
environment:
|
|
||||||
- MEILI_NO_ANALYTICS=true
|
|
||||||
volumes:
|
|
||||||
- meilisearch:/meili_data
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
## Joplin (notes)
|
|
||||||
joplin:
|
|
||||||
image: joplin/server:latest
|
|
||||||
container_name: joplin
|
|
||||||
ports:
|
|
||||||
- 22300:22300
|
|
||||||
env_file:
|
|
||||||
- ${ENV_DIR}/joplin.env
|
|
||||||
depends_on:
|
|
||||||
- joplin-db
|
|
||||||
dns:
|
|
||||||
- ${DNS_IP}
|
|
||||||
restart: unless-stopped
|
|
||||||
joplin-db:
|
|
||||||
image: postgres:15
|
|
||||||
container_name: joplin-db
|
|
||||||
volumes:
|
|
||||||
- ${DOCKER_DIR}/joplin:/var/lib/postgresql/data
|
|
||||||
ports:
|
|
||||||
- 5432:5432
|
|
||||||
environment:
|
|
||||||
- POSTGRES_PASSWORD=d8t3nmcj3
|
|
||||||
- POSTGRES_USER=april
|
|
||||||
- POSTGRES_DB=joplin
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
## Kiwix (offline wiki)
|
## Kiwix (offline wiki)
|
||||||
kiwix-serve:
|
kiwix-serve:
|
||||||
image: ghcr.io/kiwix/kiwix-serve
|
|
||||||
container_name: kiwix-serve
|
container_name: kiwix-serve
|
||||||
|
image: ghcr.io/kiwix/kiwix-serve
|
||||||
volumes:
|
volumes:
|
||||||
- /media/kiwix:/data
|
- ${KIWIX_DIR}:/data
|
||||||
ports:
|
ports:
|
||||||
- 8765:8080
|
- 8765:8080
|
||||||
command: '*.zim'
|
command: '*.zim'
|
||||||
@@ -316,24 +242,10 @@ services:
|
|||||||
- ${DNS_IP}
|
- ${DNS_IP}
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
## Link Stack
|
|
||||||
linkstack:
|
|
||||||
image: linkstackorg/linkstack
|
|
||||||
container_name: linkstack
|
|
||||||
env_file:
|
|
||||||
- ${ENV_DIR}/linkstack.env
|
|
||||||
ports:
|
|
||||||
- 4000:80
|
|
||||||
dns:
|
|
||||||
- ${DNS_IP}
|
|
||||||
volumes:
|
|
||||||
- linkstack:/htdocs
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
## LubeLogger (car mileage tracker)
|
## LubeLogger (car mileage tracker)
|
||||||
lubelogger:
|
lubelogger:
|
||||||
image: ghcr.io/hargata/lubelogger:latest
|
|
||||||
container_name: lubelogger
|
container_name: lubelogger
|
||||||
|
image: ghcr.io/hargata/lubelogger:latest
|
||||||
volumes:
|
volumes:
|
||||||
- ${DOCKER_DIR}/lubelogger/data:/App/data
|
- ${DOCKER_DIR}/lubelogger/data:/App/data
|
||||||
- ${DOCKER_DIR}/lubelogger/keys:/root/.aspnet/DataProtection-Keys
|
- ${DOCKER_DIR}/lubelogger/keys:/root/.aspnet/DataProtection-Keys
|
||||||
@@ -345,8 +257,8 @@ services:
|
|||||||
|
|
||||||
## Maloja (music listen tracking)
|
## Maloja (music listen tracking)
|
||||||
maloja:
|
maloja:
|
||||||
image: krateng/maloja
|
|
||||||
container_name: maloja
|
container_name: maloja
|
||||||
|
image: krateng/maloja
|
||||||
ports:
|
ports:
|
||||||
- 42010:42010
|
- 42010:42010
|
||||||
volumes:
|
volumes:
|
||||||
@@ -359,20 +271,30 @@ services:
|
|||||||
- ${DNS_IP}
|
- ${DNS_IP}
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
multi-scrobbler:
|
multi-scrobbler:
|
||||||
image: foxxmd/multi-scrobbler
|
|
||||||
container_name: multi-scrobbler
|
container_name: multi-scrobbler
|
||||||
|
image: foxxmd/multi-scrobbler
|
||||||
env_file:
|
env_file:
|
||||||
- ${ENV_DIR}/multi-scrobbler.env
|
- ${ENV_DIR}/scrobbler.env
|
||||||
volumes:
|
volumes:
|
||||||
- ${DOCKER_DIR}/multi-scrobbler:/config
|
- ${DOCKER_DIR}/scrobbler:/config
|
||||||
ports:
|
ports:
|
||||||
- 9078:9078
|
- 9078:9078
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
|
## Memos (simple note app)
|
||||||
|
memos:
|
||||||
|
container_name: memos
|
||||||
|
image: neosmemo/memos:stable
|
||||||
|
volumes:
|
||||||
|
- ${DOCKER_DIR}/memos:/var/opt/memos
|
||||||
|
ports:
|
||||||
|
- 5230:5230
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
## Miniflux (rss feed reader)
|
## Miniflux (rss feed reader)
|
||||||
miniflux:
|
miniflux:
|
||||||
image: miniflux/miniflux:latest
|
|
||||||
container_name: miniflux
|
container_name: miniflux
|
||||||
|
image: miniflux/miniflux:latest
|
||||||
ports:
|
ports:
|
||||||
- 8772:8080
|
- 8772:8080
|
||||||
depends_on:
|
depends_on:
|
||||||
@@ -386,8 +308,8 @@ services:
|
|||||||
- ${DNS_IP}
|
- ${DNS_IP}
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
rss_db:
|
rss_db:
|
||||||
image: postgres:15
|
|
||||||
container_name: rss_db
|
container_name: rss_db
|
||||||
|
image: postgres:15
|
||||||
env_file:
|
env_file:
|
||||||
- ${ENV_DIR}/miniflux.env
|
- ${ENV_DIR}/miniflux.env
|
||||||
volumes:
|
volumes:
|
||||||
@@ -400,8 +322,8 @@ services:
|
|||||||
|
|
||||||
## Paperless (document management)
|
## Paperless (document management)
|
||||||
paperless:
|
paperless:
|
||||||
image: ghcr.io/paperless-ngx/paperless-ngx:latest
|
|
||||||
container_name: paperless
|
container_name: paperless
|
||||||
|
image: ghcr.io/paperless-ngx/paperless-ngx:latest
|
||||||
user: 1000:1000
|
user: 1000:1000
|
||||||
depends_on:
|
depends_on:
|
||||||
- paperless_broker
|
- paperless_broker
|
||||||
@@ -416,12 +338,57 @@ services:
|
|||||||
- ${ENV_DIR}/paperless.env
|
- ${ENV_DIR}/paperless.env
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
paperless_broker:
|
paperless_broker:
|
||||||
image: docker.io/library/redis:7
|
|
||||||
container_name: paperless_broker
|
container_name: paperless_broker
|
||||||
|
image: docker.io/library/redis:7
|
||||||
volumes:
|
volumes:
|
||||||
- redis-data:/data
|
- redis-data:/data
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
|
## PicoShare (file sharing tool)
|
||||||
|
picoshare:
|
||||||
|
container_name: picoshare
|
||||||
|
image: mtlynch/picoshare
|
||||||
|
env_file:
|
||||||
|
- ${ENV_DIR}/picoshare.env
|
||||||
|
ports:
|
||||||
|
- 4001:4001
|
||||||
|
command: -db /data/store.db
|
||||||
|
volumes:
|
||||||
|
- ${DOCKER_DIR}/picoshare:/data
|
||||||
|
dns:
|
||||||
|
- ${DNS_IP}
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
## SeaFile (cloud drive)
|
||||||
|
seafile:
|
||||||
|
container_name: seafile
|
||||||
|
image: seafileltd/seafile-mc:11.0-latest
|
||||||
|
ports:
|
||||||
|
- 8623:80
|
||||||
|
volumes:
|
||||||
|
- ${DOCKER_DIR}/seafile/data:/shared
|
||||||
|
env_file:
|
||||||
|
- ${ENV_DIR}/seafile.env
|
||||||
|
environment:
|
||||||
|
- TIME_ZONE=${TZ}
|
||||||
|
depends_on:
|
||||||
|
- seafile_db
|
||||||
|
- seafile_cache
|
||||||
|
restart: unless-stopped
|
||||||
|
seafile_db:
|
||||||
|
container_name: seafile-mysql
|
||||||
|
image: mariadb:10.11
|
||||||
|
env_file:
|
||||||
|
- ${ENV_DIR}/seafile.env
|
||||||
|
volumes:
|
||||||
|
- ${DOCKER_DIR}/seafile/db:/var/lib/mysql
|
||||||
|
restart: unless-stopped
|
||||||
|
seafile_cache:
|
||||||
|
container_name: seafile_cache
|
||||||
|
image: memcached:1.6.18
|
||||||
|
entrypoint: memcached -m 256
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
## Stirling PDF (pdf utilities)
|
## Stirling PDF (pdf utilities)
|
||||||
stirling-pdf:
|
stirling-pdf:
|
||||||
container_name: stirling-pdf
|
container_name: stirling-pdf
|
||||||
@@ -435,7 +402,7 @@ services:
|
|||||||
- ${DOCKER_DIR}/stirlingpdf/logs:/logs/
|
- ${DOCKER_DIR}/stirlingpdf/logs:/logs/
|
||||||
- ${DOCKER_DIR}/stirlingpdf/pipeline:/pipeline/
|
- ${DOCKER_DIR}/stirlingpdf/pipeline:/pipeline/
|
||||||
environment:
|
environment:
|
||||||
- ${TZ}
|
- TZ=${TZ}
|
||||||
- DOCKER_ENABLE_SECURITY=false
|
- DOCKER_ENABLE_SECURITY=false
|
||||||
- LANGS=en_US
|
- LANGS=en_US
|
||||||
- DOCKER_ENABLE_SECURITY=true
|
- DOCKER_ENABLE_SECURITY=true
|
||||||
@@ -462,8 +429,8 @@ services:
|
|||||||
- ${DNS_IP}
|
- ${DNS_IP}
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
tandoor-server:
|
tandoor-server:
|
||||||
image: nginx:mainline-alpine
|
|
||||||
container_name: tandoor-server
|
container_name: tandoor-server
|
||||||
|
image: nginx:mainline-alpine
|
||||||
ports:
|
ports:
|
||||||
- 8554:80
|
- 8554:80
|
||||||
env_file:
|
env_file:
|
||||||
@@ -503,8 +470,8 @@ services:
|
|||||||
|
|
||||||
## Vaultwarden (password manager)
|
## Vaultwarden (password manager)
|
||||||
vaultwarden:
|
vaultwarden:
|
||||||
image: vaultwarden/server:latest
|
|
||||||
container_name: vaultwarden
|
container_name: vaultwarden
|
||||||
|
image: vaultwarden/server:latest
|
||||||
env_file:
|
env_file:
|
||||||
- ${ENV_DIR}/vaultwarden.env
|
- ${ENV_DIR}/vaultwarden.env
|
||||||
volumes:
|
volumes:
|
||||||
@@ -515,7 +482,33 @@ services:
|
|||||||
- ${DNS_IP}
|
- ${DNS_IP}
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
# Wizarr (jellyfin invites)
|
## Wallabag (bookmark manager)
|
||||||
|
wallabag:
|
||||||
|
container_name: wallabag
|
||||||
|
image: wallabag/wallabag
|
||||||
|
env_file:
|
||||||
|
- ${ENV_DIR}/wallabag.env
|
||||||
|
ports:
|
||||||
|
- 5438:80
|
||||||
|
volumes:
|
||||||
|
- ${DOCKER_DIR}/wallabag/images:/var/www/wallabag/web/assets/images
|
||||||
|
- ${DOCKER_DIR}/wallabag/data:/var/www/wallabag/data
|
||||||
|
dns:
|
||||||
|
- ${DNS_IP}
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
## Personal Website
|
||||||
|
webserver:
|
||||||
|
container_name: azpsen
|
||||||
|
image: lipanski/docker-static-website:latest
|
||||||
|
ports:
|
||||||
|
- 4000:3000
|
||||||
|
volumes:
|
||||||
|
- ${DOCKER_DIR}/azpsen/static:/home/static
|
||||||
|
- ${DOCKER_DIR}/azpsen/httpd.conf:/home/static/httpd.conf:ro
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
## Wizarr (jellyfin invites)
|
||||||
wizarr:
|
wizarr:
|
||||||
container_name: wizarr
|
container_name: wizarr
|
||||||
image: ghcr.io/wizarrrr/wizarr:latest
|
image: ghcr.io/wizarrrr/wizarr:latest
|
||||||
@@ -527,36 +520,58 @@ services:
|
|||||||
- ${DNS_IP}
|
- ${DNS_IP}
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
|
## Workout Tracker
|
||||||
|
workout-tracker:
|
||||||
|
container_name: workout-tracker
|
||||||
|
image: ghcr.io/jovandeginste/workout-tracker:master
|
||||||
|
ports:
|
||||||
|
# Host Port:Container Port
|
||||||
|
- 5021:8080
|
||||||
|
volumes:
|
||||||
|
- ${DOCKER_DIR}/workout-tracker:/data
|
||||||
|
env_file:
|
||||||
|
- ${ENV_DIR}/workout-tracker.env
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#---------------- MONITORING ----------------#
|
#---------------- MONITORING ----------------#
|
||||||
|
|
||||||
|
|
||||||
|
## Beszel (system monitoring)
|
||||||
|
beszel:
|
||||||
|
container_name: beszel
|
||||||
|
image: henrygd/beszel
|
||||||
|
env_file:
|
||||||
|
- ${ENV_DIR}/beszel.env
|
||||||
|
ports:
|
||||||
|
- 2493:8090
|
||||||
|
volumes:
|
||||||
|
- ${DOCKER_DIR}/beszel/data:/beszel_data
|
||||||
|
- ${DOCKER_DIR}/beszel/socket:/beszel_socket
|
||||||
|
restart: unless-stopped
|
||||||
|
beszel-agent:
|
||||||
|
container_name: beszel-agent
|
||||||
|
image: henrygd/beszel-agent:latest
|
||||||
|
env_file:
|
||||||
|
- ${ENV_DIR}/beszel.env
|
||||||
|
volumes:
|
||||||
|
- ${DOCKER_DIR}/beszel/socket:/beszel_socket
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||||
|
- /media:/extra-filesystems/media:ro
|
||||||
|
network_mode: host
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
## Dozzle (docker logs)
|
## Dozzle (docker logs)
|
||||||
dozzle:
|
dozzle:
|
||||||
container_name: dozzle
|
container_name: dozzle
|
||||||
image: amir20/dozzle:latest
|
image: amir20/dozzle:latest
|
||||||
volumes:
|
volumes:
|
||||||
- /var/run${DOCKER_DIR}.sock:/var/run${DOCKER_DIR}.sock:ro
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||||
ports:
|
ports:
|
||||||
- 9999:8080
|
- 9999:8080
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
## Glances (system monitor)
|
|
||||||
glances:
|
|
||||||
image: nicolargo/glances:latest
|
|
||||||
container_name: glances
|
|
||||||
pid: host
|
|
||||||
volumes:
|
|
||||||
- /var/run${DOCKER_DIR}.sock:/var/run${DOCKER_DIR}.sock
|
|
||||||
- /:/glances/root:ro
|
|
||||||
environment:
|
|
||||||
- "GLANCES_OPT=-w"
|
|
||||||
ports:
|
|
||||||
- 61208:61208
|
|
||||||
secrets:
|
|
||||||
- source: glances_password
|
|
||||||
target: /root/.config/glances/glances.pwd
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
## Scrutiny (disk health monitoring)
|
## Scrutiny (disk health monitoring)
|
||||||
scrutiny:
|
scrutiny:
|
||||||
container_name: scrutiny
|
container_name: scrutiny
|
||||||
@@ -577,17 +592,14 @@ services:
|
|||||||
- /dev/sdd:/dev/sdd
|
- /dev/sdd:/dev/sdd
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
## Speedtest Tracker
|
## MySpeed (internet speed tracker)
|
||||||
speedtest-tracker:
|
myspeed:
|
||||||
image: lscr.io/linuxserver/speedtest-tracker:latest
|
container_name: myspeed
|
||||||
container_name: speedtest-tracker
|
image: germannewsmaker/myspeed
|
||||||
ports:
|
|
||||||
- 8465:80
|
|
||||||
- 8466:443
|
|
||||||
env_file:
|
|
||||||
- ${ENV_DIR}/speedtest.env
|
|
||||||
volumes:
|
volumes:
|
||||||
- ${DOCKER_DIR}/speedtest-tracker:/config
|
- ${DOCKER_DIR}/myspeed:/myspeed/data
|
||||||
|
ports:
|
||||||
|
- 5216:5216
|
||||||
dns:
|
dns:
|
||||||
- ${DNS_IP}
|
- ${DNS_IP}
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
@@ -597,8 +609,8 @@ services:
|
|||||||
|
|
||||||
## AdGuard Home (ad-blocking dns provider)
|
## AdGuard Home (ad-blocking dns provider)
|
||||||
adguard:
|
adguard:
|
||||||
image: adguard/adguardhome
|
|
||||||
container_name: adguard
|
container_name: adguard
|
||||||
|
image: adguard/adguardhome
|
||||||
network_mode: host
|
network_mode: host
|
||||||
volumes:
|
volumes:
|
||||||
- ${DOCKER_DIR}/adguard/working:/opt/adguardhome/work
|
- ${DOCKER_DIR}/adguard/working:/opt/adguardhome/work
|
||||||
@@ -619,8 +631,8 @@ services:
|
|||||||
|
|
||||||
## Gluetun (vpn connector)
|
## Gluetun (vpn connector)
|
||||||
gluetun:
|
gluetun:
|
||||||
image: qmcgaw/gluetun:latest
|
|
||||||
container_name: gluetun
|
container_name: gluetun
|
||||||
|
image: qmcgaw/gluetun:latest
|
||||||
hostname: gluetun
|
hostname: gluetun
|
||||||
cap_add:
|
cap_add:
|
||||||
- NET_ADMIN
|
- NET_ADMIN
|
||||||
@@ -652,66 +664,27 @@ services:
|
|||||||
|
|
||||||
## Bazarr (subtitle downloading)
|
## Bazarr (subtitle downloading)
|
||||||
bazarr:
|
bazarr:
|
||||||
image: lscr.io/linuxserver/bazarr:latest
|
|
||||||
container_name: bazarr
|
container_name: bazarr
|
||||||
|
image: lscr.io/linuxserver/bazarr:latest
|
||||||
environment:
|
environment:
|
||||||
- puid=1000
|
- puid=1000
|
||||||
- pgid=1000
|
- pgid=1000
|
||||||
- tz=america/chicago
|
- tz=america/chicago
|
||||||
volumes:
|
volumes:
|
||||||
- ${DOCKER_DIR}/bazarr:/config
|
- ${DOCKER_DIR}/bazarr:/config
|
||||||
- /media/jellyfin/movies:/movies
|
- ${JF_MOVIES}:/movies
|
||||||
- /media/jellyfin/tv shows:/tv
|
- ${JF_SHOWS}:/tv
|
||||||
ports:
|
ports:
|
||||||
- 6767:6767
|
- 6767:6767
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
## Calibre Downloader (ebook downloading)
|
|
||||||
calibre-dl:
|
|
||||||
image: ghcr.io/calibrain/calibre-web-automated-book-downloader:latest
|
|
||||||
container_name: calibre-dl
|
|
||||||
environment:
|
|
||||||
- FLASK_PORT=8084
|
|
||||||
- FLASK_DEBUG=false
|
|
||||||
- CLOUDFLARE_PROXY_URL=http://cf-bypass:8000
|
|
||||||
- INGEST_DIR=/cwa-book-ingest
|
|
||||||
- BOOK_LANGUAGE=en
|
|
||||||
ports:
|
|
||||||
- 8085:8084
|
|
||||||
volumes:
|
|
||||||
- ${DOCKER_DIR}/calibre/ingest:/cwa-book-ingest
|
|
||||||
dns:
|
|
||||||
- ${DNS_IP}
|
|
||||||
restart: unless-stopped
|
|
||||||
## Cloudflare challenge bypass (for accessing Anna's Archive)
|
|
||||||
cf-bypass:
|
|
||||||
image: ghcr.io/sarperavci/cloudflarebypassforscraping:latest
|
|
||||||
container_name: cf-bypass
|
|
||||||
dns:
|
|
||||||
- ${DNS_IP}
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
## openbooks (IRC-based ebook downloading)
|
|
||||||
openbooks:
|
|
||||||
image: evanbuss/openbooks:latest
|
|
||||||
container_name: openbooks
|
|
||||||
command: --persist --name azpsen
|
|
||||||
ports:
|
|
||||||
- 8087:80
|
|
||||||
volumes:
|
|
||||||
# This works because calibre-web-automated fails to import .tmp files
|
|
||||||
- ${DOCKER_DIR}/calibre/ingest/:/books
|
|
||||||
dns:
|
|
||||||
- ${DNS_IP}
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
## Prowlarr (torrent indexer management)
|
## Prowlarr (torrent indexer management)
|
||||||
prowlarr:
|
prowlarr:
|
||||||
image: ghcr.io/linuxserver/prowlarr:nightly
|
|
||||||
container_name: prowlarr
|
container_name: prowlarr
|
||||||
|
image: ghcr.io/linuxserver/prowlarr:nightly
|
||||||
network_mode: "service:gluetun"
|
network_mode: "service:gluetun"
|
||||||
environment:
|
environment:
|
||||||
- ${TZ}
|
- TZ=${TZ}
|
||||||
- PUID=1000
|
- PUID=1000
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
volumes:
|
volumes:
|
||||||
@@ -720,42 +693,42 @@ services:
|
|||||||
|
|
||||||
## QBittorrent (torrent client)
|
## QBittorrent (torrent client)
|
||||||
qbittorrent:
|
qbittorrent:
|
||||||
image: ghcr.io/linuxserver/qbittorrent:latest
|
|
||||||
container_name: qbittorrent
|
container_name: qbittorrent
|
||||||
|
image: ghcr.io/linuxserver/qbittorrent:latest
|
||||||
network_mode: "service:gluetun"
|
network_mode: "service:gluetun"
|
||||||
environment:
|
environment:
|
||||||
- ${TZ}
|
- TZ=${TZ}
|
||||||
- PUID=1000
|
- PUID=1000
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
- WEBUI_PORT=8080
|
- WEBUI_PORT=8080
|
||||||
volumes:
|
volumes:
|
||||||
- ${DOCKER_DIR}/qbittorrent/config:/config
|
- ${DOCKER_DIR}/qbittorrent/config:/config
|
||||||
- ${DOCKER_DIR}/qbittorrent/downloads:/downloads
|
- ${DOCKER_DIR}/qbittorrent/downloads:/downloads
|
||||||
- /media/downloads:/ext_dl
|
- ${QB_EXT_DL}:/ext_dl
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
## Radarr (movie downloading)
|
## Radarr (movie downloading)
|
||||||
radarr:
|
radarr:
|
||||||
image: ghcr.io/linuxserver/radarr:latest
|
|
||||||
container_name: radarr
|
container_name: radarr
|
||||||
|
image: ghcr.io/linuxserver/radarr:latest
|
||||||
network_mode: "service:gluetun"
|
network_mode: "service:gluetun"
|
||||||
environment:
|
environment:
|
||||||
- ${TZ}
|
- TZ=${TZ}
|
||||||
- PUID=1000
|
- PUID=1000
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
volumes:
|
volumes:
|
||||||
- ${DOCKER_DIR}/radarr:/config
|
- ${DOCKER_DIR}/radarr:/config
|
||||||
- /media/jellyfin/Movies:/Movies #optional
|
- ${JF_MOVIES}:/Movies #optional
|
||||||
- ${DOCKER_DIR}/qbittorrent/downloads:/downloads #optional
|
- ${DOCKER_DIR}/qbittorrent/downloads:/downloads #optional
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
## Sonarr (tv show downloading)
|
## Sonarr (tv show downloading)
|
||||||
sonarr:
|
sonarr:
|
||||||
image: ghcr.io/linuxserver/sonarr:latest
|
|
||||||
container_name: sonarr
|
container_name: sonarr
|
||||||
|
image: ghcr.io/linuxserver/sonarr:latest
|
||||||
network_mode: "service:gluetun"
|
network_mode: "service:gluetun"
|
||||||
environment:
|
environment:
|
||||||
- ${TZ}
|
- TZ=${TZ}
|
||||||
- PUID=1000
|
- PUID=1000
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
- DOCKER_MODS=ghcr.io/gilbn/theme.park:sonarr
|
- DOCKER_MODS=ghcr.io/gilbn/theme.park:sonarr
|
||||||
@@ -763,21 +736,16 @@ services:
|
|||||||
- TP_THEME=dark
|
- TP_THEME=dark
|
||||||
volumes:
|
volumes:
|
||||||
- ${DOCKER_DIR}/sonarr:/config
|
- ${DOCKER_DIR}/sonarr:/config
|
||||||
- /media/jellyfin/TV Shows:/TV Shows
|
- ${JF_SHOWS}:/TV Shows
|
||||||
- ${DOCKER_DIR}/qbittorrent/downloads:/downloads
|
- ${DOCKER_DIR}/qbittorrent/downloads:/downloads
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
|
|
||||||
#---------------- DOCKER ----------------#
|
#---------------- DOCKER ----------------#
|
||||||
|
|
||||||
secrets:
|
|
||||||
glances_password:
|
|
||||||
file: ${DOCKER_DIR}/secrets/glances_password
|
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
hoarder:
|
hoarder:
|
||||||
joplindb:
|
joplindb:
|
||||||
linkstack:
|
|
||||||
meilisearch:
|
meilisearch:
|
||||||
model-cache:
|
model-cache:
|
||||||
miniflux-db:
|
miniflux-db:
|
||||||
|
176
readme.md
176
readme.md
@@ -16,10 +16,8 @@ These are all the services hosted, what they are for, and any clients I use with
|
|||||||
|
|
||||||
### Media
|
### Media
|
||||||
|
|
||||||
- [AudioBookShelf](https://www.audiobookshelf.org/) - Audiobook server
|
- [AudioBookShelf](https://www.audiobookshelf.org/) - Audiobook, ebook, and podcast server
|
||||||
- The official mobile client works great
|
- The official mobile client works great
|
||||||
- [Calibre Web Automated](https://github.com/crocodilestick/Calibre-Web-Automated) - Ebook management
|
|
||||||
- [Yomu](https://www.yomu-reader.com/) for iOS is nice and minimal and supports OPDS for use with Calibre Web
|
|
||||||
- [Immich](https://immich.app/) - Photo and video management
|
- [Immich](https://immich.app/) - Photo and video management
|
||||||
- Their official mobile apps are quite good
|
- Their official mobile apps are quite good
|
||||||
- [Jellyfin](https://jellyfin.org) - Media server for movies, TV shows, and music
|
- [Jellyfin](https://jellyfin.org) - Media server for movies, TV shows, and music
|
||||||
@@ -31,43 +29,46 @@ These are all the services hosted, what they are for, and any clients I use with
|
|||||||
|
|
||||||
- [Actual Budget](https://actualbudget.org/) - Excellent budgeting app. It can be automatically synced with your bank ([SimpleFIN Bridge](https://beta-bridge.simplefin.org/) for US banks, $15/year), but I have found that to be unstable
|
- [Actual Budget](https://actualbudget.org/) - Excellent budgeting app. It can be automatically synced with your bank ([SimpleFIN Bridge](https://beta-bridge.simplefin.org/) for US banks, $15/year), but I have found that to be unstable
|
||||||
- There used to be an official app but it has been discontinued - I added the website to my phone's home screen and it works quite well
|
- There used to be an official app but it has been discontinued - I added the website to my phone's home screen and it works quite well
|
||||||
|
- [Baikal](https://sabre.io/baikal/) - Calendar/contacts
|
||||||
|
- [Backrest](https://github.com/garethgeorge/backrest) - UI to manage backups (sent to a Raspberry Pi 5 running [restic](https://restic.net/))
|
||||||
- [ConvertX](https://github.com/C4illin/ConvertX) - File conversion utility
|
- [ConvertX](https://github.com/C4illin/ConvertX) - File conversion utility
|
||||||
- [DumbPad](https://github.com/DumbWareio/DumbPad) - Stupid simple notes app (for grocery lists, quick notes, etc.)
|
|
||||||
- [Gitea](https://about.gitea.com/) - Git server - in the process of replacing my GitHub account
|
- [Gitea](https://about.gitea.com/) - Git server - in the process of replacing my GitHub account
|
||||||
- [Grocy](https://github.com/grocy/grocy) - Household management (Am I out of milk? Do I have AAA batteries? What can I make for dinner?)
|
|
||||||
- [iOS Client](https://apps.apple.com/us/app/grocy-mobile/id1567803209)
|
- [iOS Client](https://apps.apple.com/us/app/grocy-mobile/id1567803209)
|
||||||
- [Hoarder](https://hoarder.app/) - Bookmark tool for links, pictures, notes, etc. with AI tagging
|
- [Wallabag](https://wallabag.org/) - Bookmark tool for links, pictures, notes, etc.
|
||||||
- The official app seems to work well
|
- [IT Tools](https://github.com/CorentinTh/it-tools) - Collection of random useful development/IT utilities
|
||||||
- [Joplin](https://joplinapp.org/) - Notes (Obsidian alternative)
|
|
||||||
- [Kiwix](https://kiwix.org/en/) - Offline wiki hosting - I have Wikipedia, the Arch Linux wiki, and several others downloaded
|
- [Kiwix](https://kiwix.org/en/) - Offline wiki hosting - I have Wikipedia, the Arch Linux wiki, and several others downloaded
|
||||||
- [LinkStack](https://linkstack.org/) - Self-hosted LinkTree alternative ([azpsen.com](https://azpsen.com)) - more for content creators, definitely overkill for what I need. I'll probably replace it with a simple static site at some point
|
|
||||||
- [LubeLogger](https://lubelogger.com/) - Car mileage and service tracker
|
- [LubeLogger](https://lubelogger.com/) - Car mileage and service tracker
|
||||||
- [Maloja](https://github.com/krateng/maloja) - Self-hosted music listen tracker (last.fm replacement) - with [multi-scrobbler](https://github.com/FoxxMD/multi-scrobbler) for Jellyfin support
|
- [Maloja](https://github.com/krateng/maloja) - Self-hosted music listen tracker (last.fm replacement) - with [multi-scrobbler](https://github.com/FoxxMD/multi-scrobbler) for Jellyfin support
|
||||||
|
- [Memos](https://github.com/usememos/memos) - Super simple note/list/todo/memo app
|
||||||
- [Miniflux](https://miniflux.app/) - Minimalist RSS feed reader
|
- [Miniflux](https://miniflux.app/) - Minimalist RSS feed reader
|
||||||
- [NetNewsWire](https://netnewswire.com/) - Wonderful all-purpose iOS RSS client
|
- [NetNewsWire](https://netnewswire.com/) - Wonderful all-purpose iOS RSS client
|
||||||
- [Paperless-ngx](https://docs.paperless-ngx.com/) - Document management system for legal documents, IDs, bank statements, etc.
|
- [Paperless-ngx](https://docs.paperless-ngx.com/) - Document management system for legal documents, IDs, bank statements, etc.
|
||||||
- [Swift Paperless](https://github.com/paulgessinger/swift-paperless) - iOS client
|
- [Swift Paperless](https://github.com/paulgessinger/swift-paperless) - iOS client
|
||||||
|
- [PicoShare](https://github.com/picocss/pico) - Super simple file sharing tool
|
||||||
|
- [Seafile](https://www.seafile.com/en/home/) - Cloud drive
|
||||||
|
- [Static Webserver](https://github.com/lipanski/docker-static-website) - Simple Docker container with BusyBox to serve my personal website ([azpsen.com](https://azpsen.com))
|
||||||
- [Stirling PDF](https://www.stirlingpdf.com/) - PDF tools for viewing, editing, converting, and everything else
|
- [Stirling PDF](https://www.stirlingpdf.com/) - PDF tools for viewing, editing, converting, and everything else
|
||||||
- [Tandoor](https://tandoor.dev/) - Recipe management, so I always know which zucchine muffin recipe is the good one
|
- [Tandoor](https://tandoor.dev/) - Recipe management, so I always know which zucchine muffin recipe is the good one
|
||||||
- [Untare](https://github.com/phantomate/Untare) - Mobile client (discontinued but it still works for now)
|
- [Untare](https://github.com/phantomate/Untare) - Mobile client (discontinued but it still works for now)
|
||||||
- [Tinyhome](https://github.com/bderenzo/tinyhome) - Static new tab page set up with links to all my server stuff
|
- [Tinyhome](https://github.com/bderenzo/tinyhome) - Static new tab page set up with links to all my server stuff
|
||||||
- [vaultwarden](https://github.com/dani-garcia/vaultwarden) - Password manager
|
- [Vaultwarden](https://github.com/dani-garcia/vaultwarden) - Password manager
|
||||||
- [Bitwarden clients](https://bitwarden.com/download/)
|
- [Bitwarden clients](https://bitwarden.com/download/)
|
||||||
- [Wizarr](https://github.com/Wizarrrr/wizarr?tab=readme-ov-file) - Jellyfin user invite manager
|
- [Wizarr](https://github.com/Wizarrrr/wizarr?tab=readme-ov-file) - Jellyfin user invite manager
|
||||||
|
- [Workout Tracker](https://github.com/jovandeginste/workout-tracker) - Used with [OpenTracks](https://github.com/OpenTracksApp/OpenTracks) to track my cycling
|
||||||
|
|
||||||
### Monitoring
|
### Monitoring
|
||||||
|
|
||||||
|
- [Beszel](https://www.beszel.dev/) - System stats with pretty graphs
|
||||||
- [Dozzle](https://dozzle.dev/) - Docker logs all in one place
|
- [Dozzle](https://dozzle.dev/) - Docker logs all in one place
|
||||||
- [Glances](https://github.com/nicolargo/glances) - System monitor - I mostly have this for dashboard widgets but it can be useful by itself
|
- [Glances](https://github.com/nicolargo/glances) - System monitor - I mostly have this for dashboard widgets but it can be useful by itself
|
||||||
- [Scrutiny](https://github.com/AnalogJ/scrutiny) - HDD SMART monitoring, so I know when to prepare for a drive failure
|
- [Scrutiny](https://github.com/AnalogJ/scrutiny) - HDD SMART monitoring, so I know when to prepare for a drive failure
|
||||||
- [Doku](https://github.com/amerkurev/doku) - Docker disk usage monitor - makes it easy to see how much space I can free up by pruning
|
- [MySpeed](https://github.com/gnmyt/myspeed) - Runs scheduled internet speedtests and creates pretty graphs to keep my ISP honest
|
||||||
- [Speedtest Tracker](https://speedtest-tracker.dev/) - Runs scheduled internet speedtests and creates pretty graphs to keep my ISP honest
|
|
||||||
|
|
||||||
### Networking
|
### Networking
|
||||||
|
|
||||||
- [AdGuard Home](https://adguard.com/en/adguard-home/overview.html) - DNS filtering - I use this with [tailscale](https://tailscale.com/) to block ads on my phone
|
- [AdGuard Home](https://adguard.com/en/adguard-home/overview.html) - DNS filtering - I use this with [tailscale](https://tailscale.com/) to block ads on my phone
|
||||||
- [cloudflared](https://github.com/cloudflare/cloudflared) - CloudFlare tunnel client for easy and secure external service access
|
- [Cloudflared](https://github.com/cloudflare/cloudflared) - CloudFlare tunnel client for easy and secure external service access
|
||||||
- [gluetun](https://github.com/qdm12/gluetun) - Docker VPN client and kill-switch. Very useful, allows for per-container VPN routing.
|
- [Gluetun](https://github.com/qdm12/gluetun) - Docker VPN client and kill-switch. Very useful, allows for per-container VPN routing.
|
||||||
|
|
||||||
Note that I run tailscale as a system service, not in a container, so it is not listed here, but it is very useful for secure remote access - both for SSH and for services that don't need to be publicly visible.
|
Note that I run tailscale as a system service, not in a container, so it is not listed here, but it is very useful for secure remote access - both for SSH and for services that don't need to be publicly visible.
|
||||||
|
|
||||||
@@ -76,9 +77,7 @@ In `docker-compose.yml`, services that I access through tailscale need the `dns:
|
|||||||
### Downloading
|
### Downloading
|
||||||
|
|
||||||
- [Bazarr](https://www.bazarr.media/) - Automated subtitle fetching (I also use the OpenSubtitles plugin within Jellyfin when needed, but this works hands-off most of the time)
|
- [Bazarr](https://www.bazarr.media/) - Automated subtitle fetching (I also use the OpenSubtitles plugin within Jellyfin when needed, but this works hands-off most of the time)
|
||||||
- [Calibre Web Book Downloader](https://github.com/calibrain/calibre-web-automated-book-downloader) - Automated ebook search and downloading
|
- [Prowlarr](https://prowlarr.com/) - Torrent indexer that interfaces with the other \*arrs
|
||||||
- [openbooks](https://github.com/evan-buss/openbooks) - Automated IRC-based ebook search and downloading
|
|
||||||
- [Prowlarr](https://prowlarr.com/) - Torrent indexer that interfaces with the other *arrs
|
|
||||||
- [qBittorrent](https://www.qbittorrent.org/) - The only torrent client I'll ever use
|
- [qBittorrent](https://www.qbittorrent.org/) - The only torrent client I'll ever use
|
||||||
- [Radarr](https://radarr.video/) - Automated movie fetching
|
- [Radarr](https://radarr.video/) - Automated movie fetching
|
||||||
- [Sonarr](https://sonarr.tv/) - Automated TV show fetching
|
- [Sonarr](https://sonarr.tv/) - Automated TV show fetching
|
||||||
@@ -110,7 +109,22 @@ Below are the variables that need to be set in the `.env` file for each service.
|
|||||||
> - Password: API Key generated in SendGrid
|
> - Password: API Key generated in SendGrid
|
||||||
> - From: `<mailer-name>@<your-domain>` - For each custom sender (`mailer-name`), there needs to be a verified sender in SendGrid.
|
> - From: `<mailer-name>@<your-domain>` - For each custom sender (`mailer-name`), there needs to be a verified sender in SendGrid.
|
||||||
|
|
||||||
### cloudflared
|
### Beszel
|
||||||
|
|
||||||
|
[Docs](https://www.beszel.dev/guide/environment-variables)
|
||||||
|
|
||||||
|
```env
|
||||||
|
# beszel.env
|
||||||
|
|
||||||
|
# Hub settings
|
||||||
|
BESZEL_HUB_APP_URL=
|
||||||
|
|
||||||
|
# Agent settings
|
||||||
|
BESZEL_AGENT_LISTEN=/beszel_socket/beszel.sock
|
||||||
|
BESZEL_AGENT_KEY=''
|
||||||
|
```
|
||||||
|
|
||||||
|
### Cloudflared
|
||||||
|
|
||||||
[Docs](https://github.com/cloudflare/cloudflared?tab=readme-ov-file)
|
[Docs](https://github.com/cloudflare/cloudflared?tab=readme-ov-file)
|
||||||
|
|
||||||
@@ -132,19 +146,7 @@ JWT_SECRET=
|
|||||||
HTTP_ALLOWED=true
|
HTTP_ALLOWED=true
|
||||||
```
|
```
|
||||||
|
|
||||||
### DumbPad
|
### Gluetun
|
||||||
|
|
||||||
[Docs](https://github.com/C4illin/ConvertX#environment-variables)
|
|
||||||
|
|
||||||
```env
|
|
||||||
# dumbpad.env
|
|
||||||
|
|
||||||
SITE_TITLE=
|
|
||||||
DUMBPAD_PIN=
|
|
||||||
BASE_URL=
|
|
||||||
```
|
|
||||||
|
|
||||||
### gluetun
|
|
||||||
|
|
||||||
[Docs](https://github.com/qdm12/gluetun)
|
[Docs](https://github.com/qdm12/gluetun)
|
||||||
|
|
||||||
@@ -172,7 +174,6 @@ My current Immich docker setup has a lot of repetition - when I want to update,
|
|||||||
# immich.env
|
# immich.env
|
||||||
|
|
||||||
UPLOAD_LOCATION=/media/immich
|
UPLOAD_LOCATION=/media/immich
|
||||||
IMMICH_VERSION="v1.123.0"
|
|
||||||
|
|
||||||
TYPESENSE_API_KEY=
|
TYPESENSE_API_KEY=
|
||||||
DB_PASSWORD=
|
DB_PASSWORD=
|
||||||
@@ -234,46 +235,6 @@ POSTGRES_PASSWORD=
|
|||||||
# docker run --network=container:gluetun quay.io/invidious/youtube-trusted-session-generator
|
# docker run --network=container:gluetun quay.io/invidious/youtube-trusted-session-generator
|
||||||
```
|
```
|
||||||
|
|
||||||
### Joplin
|
|
||||||
|
|
||||||
[Docs](https://github.com/flosoft/docker-joplin-server)
|
|
||||||
|
|
||||||
```env
|
|
||||||
# joplin.env
|
|
||||||
|
|
||||||
APP_PORT=22300
|
|
||||||
APP_BASE_URL=
|
|
||||||
DB_CLIENT=pg
|
|
||||||
POSTGRES_PASSWORD=
|
|
||||||
POSTGRES_DATABASE=joplin
|
|
||||||
POSTGRES_USER=
|
|
||||||
POSTGRES_PORT=5432
|
|
||||||
POSTGRES_HOST=joplin-db
|
|
||||||
|
|
||||||
# Optional SMTP settings
|
|
||||||
MAILER_ENABLED=1
|
|
||||||
MAILER_HOST=
|
|
||||||
MAILER_PORT=465
|
|
||||||
MAILER_SECURE=1
|
|
||||||
MAILER_AUTH_USER=
|
|
||||||
MAILER_AUTH_PASSWORD=
|
|
||||||
MAILER_NOREPLY_NAME=
|
|
||||||
MAILER_NOREPLY_EMAIL=
|
|
||||||
```
|
|
||||||
|
|
||||||
### LinkStack
|
|
||||||
|
|
||||||
[Docs](https://linkstack.org/docker/)
|
|
||||||
|
|
||||||
This one just needs the public hostname and admin email.
|
|
||||||
|
|
||||||
```env
|
|
||||||
# linkstack.env
|
|
||||||
|
|
||||||
HTTPS_SERVER_NAME=
|
|
||||||
SERVER_ADMIN=
|
|
||||||
```
|
|
||||||
|
|
||||||
### LubeLogger
|
### LubeLogger
|
||||||
|
|
||||||
[Docs](https://docs.lubelogger.com/Advanced/Environment%20Variables)
|
[Docs](https://docs.lubelogger.com/Advanced/Environment%20Variables)
|
||||||
@@ -309,7 +270,7 @@ POSTGRES_DB=miniflux
|
|||||||
[Docs](https://foxxmd.github.io/multi-scrobbler/docs/configuration/)
|
[Docs](https://foxxmd.github.io/multi-scrobbler/docs/configuration/)
|
||||||
|
|
||||||
```env
|
```env
|
||||||
# multi-scrobbler.env
|
# scrobbler.env
|
||||||
|
|
||||||
TZ=America/Chicago
|
TZ=America/Chicago
|
||||||
PUID=1000
|
PUID=1000
|
||||||
@@ -355,26 +316,35 @@ PAPERLESS_EMAIL_HOST_PASSWORD=
|
|||||||
PAPERLESS_EMAIL_FROM=
|
PAPERLESS_EMAIL_FROM=
|
||||||
```
|
```
|
||||||
|
|
||||||
### Speedtest Tracker
|
### PicoShare
|
||||||
|
|
||||||
[Docs](https://docs.speedtest-tracker.dev/getting-started/installation/using-docker-compose)
|
[Docs](https://github.com/mtlynch/picoshare)
|
||||||
|
|
||||||
```env
|
```env
|
||||||
# speedtest.env
|
# picoshare.env
|
||||||
|
|
||||||
PUID=1000
|
PORT=4001
|
||||||
PGID=1000
|
PS_SHARED_SECRET=
|
||||||
|
PS_BEHIND_PROXY=true
|
||||||
|
```
|
||||||
|
|
||||||
# Generate with `echo -n 'base64:'; openssl rand -base64 32;` or use the speedtest-tracker website
|
### Seafile
|
||||||
APP_KEY=
|
|
||||||
|
|
||||||
# Public address or IP
|
[Docs](https://manual.seafile.com/11.0/docker/deploy_seafile_with_docker/)
|
||||||
APP_URL=
|
|
||||||
|
|
||||||
DB_CONNECTION=sqlite
|
```env
|
||||||
APP_TIMEZONE=
|
# seafile.env
|
||||||
DISPLAY_TIMEZONE=
|
|
||||||
SPEEDTEST_SCHEDULE=0,15,30,45 * * * * # run speedtest every 15 minutes
|
DB_HOST=seafile_db
|
||||||
|
DB_ROOT_PASSWD=
|
||||||
|
SEAFILE_ADMIN_EMAIL=
|
||||||
|
SEAFILE_ADMIN_PASSWORD=
|
||||||
|
SEAFILE_SERVER_HOSTNAME=
|
||||||
|
FORCE_HTTPS_IN_CONF=true
|
||||||
|
|
||||||
|
MYSQL_ROOT_PASSWORD= # same as DB_ROOT_PASSWD above
|
||||||
|
MYSQL_LOG_CONSOLE=true
|
||||||
|
MARIADB_AUTO_UPGRADE=1
|
||||||
```
|
```
|
||||||
|
|
||||||
### Tandoor
|
### Tandoor
|
||||||
@@ -399,7 +369,7 @@ POSTGRES_USER=tandoor
|
|||||||
POSTGRES_PASSWORD=
|
POSTGRES_PASSWORD=
|
||||||
```
|
```
|
||||||
|
|
||||||
### vaultwarden
|
### Vaultwarden
|
||||||
|
|
||||||
[Docs](https://github.com/dani-garcia/vaultwarden)
|
[Docs](https://github.com/dani-garcia/vaultwarden)
|
||||||
|
|
||||||
@@ -425,3 +395,35 @@ SMTP_SECURITY=starttls
|
|||||||
SMTP_USERNAME=
|
SMTP_USERNAME=
|
||||||
SMTP_PASSWORD=
|
SMTP_PASSWORD=
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Wallabag
|
||||||
|
|
||||||
|
[Docs](https://hub.docker.com/r/wallabag/wallabag/)
|
||||||
|
|
||||||
|
The domain name should be set to your Wallabag instance's domain (e.g. links.mysite.com). Server name is just a pretty name for your instance. The DB password and secret can be set to randomly generated strings.
|
||||||
|
|
||||||
|
FOSUSER_REGISTRATION must be set to `true` for at least the first run so a user can be created.
|
||||||
|
|
||||||
|
Note: The username/password need to be included in the mailer DSN (e.g. smtp://apikey:mykey12345@smtp.sendgrid.net)
|
||||||
|
|
||||||
|
```env
|
||||||
|
# wallabag.env
|
||||||
|
|
||||||
|
SYMFONY__ENV__DOMAIN_NAME=
|
||||||
|
SYMFONY__ENV__SERVER_NAME=
|
||||||
|
SYMFONY__ENV__DATABASE_PASSWORD=
|
||||||
|
SYMFONY__ENV__SECRET=
|
||||||
|
SYMFONY__ENV__FOSUSER_REGISTRATION=false
|
||||||
|
SYMFONY__ENV__MAILER_DSN=
|
||||||
|
SYMFONY__ENV__FROM_EMAIL=
|
||||||
|
```
|
||||||
|
|
||||||
|
### Workout Tracker
|
||||||
|
|
||||||
|
[Docs](https://github.com/jovandeginste/workout-tracker#docker)
|
||||||
|
|
||||||
|
```env
|
||||||
|
# workout-tracker.env
|
||||||
|
|
||||||
|
WT_JWT_ENCRYPTION_KEY=
|
||||||
|
```
|
||||||
|
Reference in New Issue
Block a user