Compare commits
5 commits
84c238b44a
...
dbc6ffcf9d
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dbc6ffcf9d | ||
|
|
f3b13306b4 | ||
|
|
48d32ac19b | ||
|
|
c5d2588da6 | ||
|
|
cb6fc8f3b9 |
66
booklore/compose.yaml
Normal file
66
booklore/compose.yaml
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
services:
|
||||
booklore:
|
||||
image: booklore/booklore:v1.17.0
|
||||
container_name: booklore
|
||||
volumes:
|
||||
# Config
|
||||
- $APPDATA/booklore/data:/app/data
|
||||
# Media
|
||||
- $MEDIADIR/books:/books
|
||||
- $MEDIADIR/comics:/comics
|
||||
# - $MEDIADIR/bookdrop:/bookdrop
|
||||
environment:
|
||||
USER_ID: $PUID
|
||||
GROUP_ID: $PGID
|
||||
TZ: $TZ
|
||||
DATABASE_URL: $BOOKLORE_DB_URL
|
||||
DATABASE_USERNAME: $BOOKLORE_DB_USER
|
||||
DATABASE_PASSWORD: $BOOKLORE_DB_PASSWORD
|
||||
BOOKLORE_PORT: 6060
|
||||
ports:
|
||||
- "6060:6060"
|
||||
# labels:
|
||||
# - "traefik.enable=true"
|
||||
# - "traefik.http.routers.booklore.rule=Host(`booklore.${LOCAL_DOMAIN}`)"
|
||||
# - "traefik.http.routers.booklore.entrypoints=https"
|
||||
# - "traefik.http.routers.booklore.tls=true"
|
||||
# - "traefik.http.services.booklore.loadbalancer.server.port=6060"
|
||||
# networks:
|
||||
# - proxy
|
||||
depends_on:
|
||||
mariadb:
|
||||
condition: service_healthy
|
||||
healthcheck:
|
||||
test: wget -q -O - http://localhost:6060/api/v1/healthcheck
|
||||
interval: 60s
|
||||
retries: 5
|
||||
start_period: 60s
|
||||
timeout: 10s
|
||||
restart: unless-stopped
|
||||
|
||||
mariadb:
|
||||
image: lscr.io/linuxserver/mariadb:11.4.5
|
||||
container_name: mariadb
|
||||
volumes:
|
||||
# Config
|
||||
- $APPDATA/booklore/mariadb/config:/config
|
||||
environment:
|
||||
PUID: $PUID
|
||||
PGID: $PGID
|
||||
TZ: $TZ
|
||||
MYSQL_ROOT_PASSWORD: $BOOKLORE_MYSQL_ROOT_PASSWORD
|
||||
MYSQL_DATABASE: $BOOKLORE_MYSQL_DATABASE
|
||||
MYSQL_USER: $BOOKLORE_DB_USER
|
||||
MYSQL_PASSWORD: $BOOKLORE_DB_PASSWORD
|
||||
# networks:
|
||||
# - proxy
|
||||
healthcheck:
|
||||
test: [ "CMD", "mariadb-admin", "ping", "-h", "localhost" ]
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 10
|
||||
restart: unless-stopped
|
||||
|
||||
# networks:
|
||||
# proxy:
|
||||
# external: true
|
||||
49
deluge/compose.yaml
Normal file
49
deluge/compose.yaml
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
services:
|
||||
deluge:
|
||||
image: ghcr.io/linuxserver/deluge:2.2.0
|
||||
container_name: deluge
|
||||
volumes:
|
||||
# Config
|
||||
- $APPDATA/deluge:/config
|
||||
# Media
|
||||
- $DOWNLOADS:/downloads
|
||||
environment:
|
||||
PUID: $PUID
|
||||
PGID: $PGID
|
||||
TZ: $TZ
|
||||
ports:
|
||||
- 8112:8112
|
||||
- 6881:6881
|
||||
- 6881:6881/udp
|
||||
# labels:
|
||||
# - "traefik.enable=true"
|
||||
# - "traefik.http.routers.deluge.rule=Host(`deluge.${LOCAL_DOMAIN}`)"
|
||||
# - "traefik.http.routers.deluge.entrypoints=https"
|
||||
# - "traefik.http.routers.deluge.tls=true"
|
||||
# - "traefik.http.services.deluge.loadbalancer.server.port=8112"
|
||||
# networks:
|
||||
# - proxy
|
||||
restart: unless-stopped
|
||||
|
||||
storm:
|
||||
image: ghcr.io/relvacode/storm:v1.3.0
|
||||
container_name: storm
|
||||
environment:
|
||||
DELUGE_RPC_VERSION: v2
|
||||
DELUGE_RPC_HOSTNAME: deluge
|
||||
DELUGE_RPC_USERNAME: $DELUGE_USER
|
||||
DELUGE_RPC_PASSWORD: $DELUGE_PASS
|
||||
ports:
|
||||
- 8221:8221
|
||||
# labels:
|
||||
# - "traefik.enable=true"
|
||||
# - "traefik.http.routers.storm.rule=Host(`storm.${LOCAL_DOMAIN}`)"
|
||||
# - "traefik.http.routers.storm.entrypoints=https"
|
||||
# - "traefik.http.routers.storm.tls=true"
|
||||
# - "traefik.http.services.storm.loadbalancer.server.port=8221"
|
||||
# networks:
|
||||
# - proxy
|
||||
|
||||
# networks:
|
||||
# proxy:
|
||||
# external: true
|
||||
50
drop/compose.yaml
Normal file
50
drop/compose.yaml
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
services:
|
||||
drop:
|
||||
image: ghcr.io/drop-oss/drop:v0.3.5
|
||||
container_name: drop
|
||||
volumes:
|
||||
# Config
|
||||
- $APPDATA/drop/data:/data
|
||||
# Media
|
||||
- $MEDIADIR/games/pc:/library
|
||||
environment:
|
||||
DATABASE_URL: postgres://${DROP_DB_USER}:${DROP_DB_PASSWORD}@postgres:5432/${DROP_DB}
|
||||
EXTERNAL_URL: http://${HOST_IP}:3001 # default, customise if accessing from another computer or behind a reverse proxy
|
||||
ports:
|
||||
- 3001:3000
|
||||
# labels:
|
||||
# - "traefik.enable=true"
|
||||
# - "traefik.http.routers.drop.rule=Host(`drop.${LOCAL_DOMAIN}`)"
|
||||
# - "traefik.http.routers.drop.entrypoints=https"
|
||||
# - "traefik.http.routers.drop.tls=true"
|
||||
# - "traefik.http.services.drop.loadbalancer.server.port=3000"
|
||||
# networks:
|
||||
# - proxy
|
||||
depends_on:
|
||||
postgres:
|
||||
condition: service_healthy
|
||||
restart: unless-stopped
|
||||
|
||||
postgres:
|
||||
image: postgres:14-alpine
|
||||
container_name: postgres
|
||||
volumes:
|
||||
# Config
|
||||
- $APPDATA/drop/db:/var/lib/postgresql/data
|
||||
environment:
|
||||
POSTGRES_DB: $DROP_DB
|
||||
POSTGRES_USER: $DROP_DB_USER
|
||||
POSTGRES_PASSWORD: $DROP_DB_PASSWORD
|
||||
# networks:
|
||||
# - proxy
|
||||
healthcheck:
|
||||
test: pg_isready -d ${DROP_DB} -U ${DROP_DB_USER}
|
||||
interval: 30s
|
||||
timeout: 60s
|
||||
retries: 5
|
||||
start_period: 10s
|
||||
restart: unless-stopped
|
||||
|
||||
# networks:
|
||||
# proxy:
|
||||
# external: true
|
||||
26
freshrss/compose.yaml
Normal file
26
freshrss/compose.yaml
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
services:
|
||||
freshrss:
|
||||
image: linuxserver/freshrss:1.28.1
|
||||
container_name: freshrss
|
||||
volumes:
|
||||
# Config
|
||||
- $APPDATA/freshrss:/config
|
||||
environment:
|
||||
PUID: $PUID
|
||||
PGID: $PGID
|
||||
TZ: $TZ
|
||||
ports:
|
||||
- 8083:80
|
||||
# labels:
|
||||
# - "traefik.enable=true"
|
||||
# - "traefik.http.routers.freshrss.rule=Host(`freshrss.${LOCAL_DOMAIN}`)"
|
||||
# - "traefik.http.routers.freshrss.entrypoints=https"
|
||||
# - "traefik.http.routers.freshrss.tls=true"
|
||||
# - "traefik.http.services.freshrss.loadbalancer.server.port=80"
|
||||
# networks:
|
||||
# - proxy
|
||||
restart: unless-stopped
|
||||
|
||||
# networks:
|
||||
# proxy:
|
||||
# external: true
|
||||
34
jellyfin/compose.yaml
Normal file
34
jellyfin/compose.yaml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
services:
|
||||
jellyfin:
|
||||
image: ghcr.io/linuxserver/jellyfin:10.11.6
|
||||
container_name: jellyfin
|
||||
volumes:
|
||||
# Config
|
||||
- $APPDATA/jellyfin:/config
|
||||
# Media
|
||||
- $MEDIADIR/tv:/tv
|
||||
- $MEDIADIR/movies:/movies
|
||||
- $MEDIADIR/music:/music
|
||||
- $MEDIADIR/audiobooks:/audiobooks
|
||||
- $MEDIADIR/emissions:/emissions
|
||||
- $MEDIADIR/books:/books
|
||||
- $MEDIADIR/youtube:/youtube
|
||||
environment:
|
||||
PUID: $PUID
|
||||
PGID: $PGID
|
||||
TZ: $TZ
|
||||
ports:
|
||||
- 8096:8096
|
||||
# labels:
|
||||
# - "traefik.enable=true"
|
||||
# - "traefik.http.routers.jellyfin.rule=Host(`jellyfin.${LOCAL_DOMAIN}`)"
|
||||
# - "traefik.http.routers.jellyfin.entrypoints=https"
|
||||
# - "traefik.http.routers.jellyfin.tls=true"
|
||||
# - "traefik.http.services.jellyfin.loadbalancer.server.port=8096"
|
||||
# networks:
|
||||
# - proxy
|
||||
restart: unless-stopped
|
||||
|
||||
# networks:
|
||||
# proxy:
|
||||
# external: true
|
||||
Loading…
Reference in a new issue