updates from new deployment
This commit is contained in:
parent
028cc0e8d5
commit
285b437bde
4
FileBrowser/README.md
Normal file
4
FileBrowser/README.md
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
|
||||||
|
# Filebrowser
|
||||||
|
|
||||||
|
Browser-based file browser. Default creds will be `admin` `admin`. Obviously change this asap
|
@ -1,5 +1,3 @@
|
|||||||
---
|
|
||||||
version: '3'
|
|
||||||
services:
|
services:
|
||||||
file-browser:
|
file-browser:
|
||||||
image: filebrowser/filebrowser
|
image: filebrowser/filebrowser
|
||||||
@ -9,7 +7,7 @@ services:
|
|||||||
ports:
|
ports:
|
||||||
- 8080:80
|
- 8080:80
|
||||||
volumes:
|
volumes:
|
||||||
- ../../documents/:/srv/
|
- ${ZFS_POOL}/:/srv/
|
||||||
- ./database.db:/database.db
|
- ./database.db:/database.db
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
@ -1,16 +1,14 @@
|
|||||||
---
|
|
||||||
version: '3'
|
|
||||||
services:
|
services:
|
||||||
jellyfin:
|
jellyfin:
|
||||||
user: 1000:1000
|
# GID might need to be manuall set (id -g)
|
||||||
|
user: ${UID}:${GID}
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
image: jellyfin/jellyfin:latest
|
image: jellyfin/jellyfin:latest
|
||||||
container_name: jellyfin
|
container_name: jellyfin
|
||||||
volumes:
|
volumes:
|
||||||
- ./config:/config
|
- ./config:/config
|
||||||
- ./cache:/cache
|
- ./cache:/cache
|
||||||
- ../../documents/media:/media
|
- ${ZFS_POOL}/media:/media
|
||||||
network_mode: 'host'
|
|
||||||
ports:
|
ports:
|
||||||
- 8096:9096
|
- 8096:9096
|
||||||
# Requires packages:
|
# Requires packages:
|
@ -1,5 +1,3 @@
|
|||||||
---
|
|
||||||
version: '3'
|
|
||||||
services:
|
services:
|
||||||
qbittorrent:
|
qbittorrent:
|
||||||
image: qbittorrentofficial/qbittorrent-nox:latest
|
image: qbittorrentofficial/qbittorrent-nox:latest
|
||||||
@ -11,10 +9,11 @@ services:
|
|||||||
- QBT_EULA=true
|
- QBT_EULA=true
|
||||||
volumes:
|
volumes:
|
||||||
- ./qbit-config:/config
|
- ./qbit-config:/config
|
||||||
- ../../documents/downloads:/downloads
|
- ${ZFS_POOL}/downloads:/downloads
|
||||||
network_mode: host
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- vpn
|
- vpn
|
||||||
|
ports:
|
||||||
|
- 6882:6882
|
||||||
vpn:
|
vpn:
|
||||||
image: lscr.io/linuxserver/wireguard:latest
|
image: lscr.io/linuxserver/wireguard:latest
|
||||||
container_name: wireguard
|
container_name: wireguard
|
||||||
@ -22,13 +21,12 @@ services:
|
|||||||
cap_add:
|
cap_add:
|
||||||
- NET_ADMIN
|
- NET_ADMIN
|
||||||
environment:
|
environment:
|
||||||
- PUID=1000
|
- PUID=${UID}
|
||||||
- PGID=1000
|
- PGID=${GID}
|
||||||
- TZ=America/Denver
|
- TZ=America/Denver
|
||||||
- SERVERPORT=51820 #optional
|
- SERVERPORT=51820 #optional
|
||||||
- LOG_CONFS=true #optional
|
- LOG_CONFS=true #optional
|
||||||
volumes:
|
volumes:
|
||||||
- ./config:/config
|
- ./config:/config
|
||||||
network_mode: host
|
sysctls:
|
||||||
# sysctls:
|
- net.ipv4.conf.all.src_valid_mark=1
|
||||||
# - net.ipv4.conf.all.src_valid_mark=1
|
|
Loading…
x
Reference in New Issue
Block a user