new services + proxy network rework
This commit is contained in:
10
ActualBudget/docker-compose.yml
Normal file → Executable file
10
ActualBudget/docker-compose.yml
Normal file → Executable file
@@ -1,11 +1,12 @@
|
|||||||
version: '3.9'
|
version: '3.9'
|
||||||
services:
|
services:
|
||||||
actual_server:
|
actual_server:
|
||||||
|
container_name: actualbudget
|
||||||
image: actualbudget/actual-server:latest
|
image: actualbudget/actual-server:latest
|
||||||
ports:
|
# ports:
|
||||||
# This line makes Actual available at port 5006 of the device you run the server on,
|
# This line makes Actual available at port 5006 of the device you run the server on,
|
||||||
# i.e. http://localhost:5006. You can change the first number to change the port, if you want.
|
# i.e. http://localhost:5006. You can change the first number to change the port, if you want.
|
||||||
- '5006:5006'
|
# - '5006:5006'
|
||||||
# environment:
|
# environment:
|
||||||
# Uncomment any of the lines below to set configuration options.
|
# Uncomment any of the lines below to set configuration options.
|
||||||
# - ACTUAL_HTTPS_KEY=/data/selfhost.key
|
# - ACTUAL_HTTPS_KEY=/data/selfhost.key
|
||||||
@@ -21,3 +22,8 @@ services:
|
|||||||
# '/data' is the path Actual will look for its files in by default, so leave that as-is.
|
# '/data' is the path Actual will look for its files in by default, so leave that as-is.
|
||||||
- /zstore/Docker-volumes/ActualBudget:/data
|
- /zstore/Docker-volumes/ActualBudget:/data
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
|
networks:
|
||||||
|
default:
|
||||||
|
external: true
|
||||||
|
name: proxy
|
||||||
|
|||||||
32
Beszel/docker-compose.yml
Executable file
32
Beszel/docker-compose.yml
Executable file
@@ -0,0 +1,32 @@
|
|||||||
|
services:
|
||||||
|
beszel:
|
||||||
|
image: henrygd/beszel:latest
|
||||||
|
container_name: beszel
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- 8090:8090
|
||||||
|
volumes:
|
||||||
|
- /zstore/Docker-volumes/Beszel/beszel_data:/beszel_data
|
||||||
|
- /zstore/Docker-volumes/Beszel/beszel_socket:/beszel_socket
|
||||||
|
|
||||||
|
beszel-agent:
|
||||||
|
image: henrygd/beszel-agent-intel:latest
|
||||||
|
container_name: beszel-agent
|
||||||
|
restart: unless-stopped
|
||||||
|
network_mode: host
|
||||||
|
devices:
|
||||||
|
- /dev/dri/card1:/dev/dri/card0
|
||||||
|
cap_add:
|
||||||
|
- CAP_PERFMON
|
||||||
|
- CAP_SYS_ADMIN
|
||||||
|
volumes:
|
||||||
|
- /zstore/Docker-volumes/Beszel/beszel_agent_data:/var/lib/beszel-agent
|
||||||
|
- /zstore/Docker-volumes/Beszel/beszel_socket:/beszel_socket
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||||
|
- /data/.beszel:/extra-filesystems/data:ro
|
||||||
|
- /zstore/.beszel:/extra-filesystems/zstore:ro
|
||||||
|
environment:
|
||||||
|
LISTEN: /beszel_socket/beszel.sock
|
||||||
|
HUB_URL: http://localhost:8090
|
||||||
|
TOKEN: 11f2-0d375ac17a-ca4-b2dbb3f1f38
|
||||||
|
KEY: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOtyt5P12IMabBbV6BIQmENArIzufsiLEqH85tGNtT9f"
|
||||||
13
Bitwarden/docker-compose.yml
Normal file → Executable file
13
Bitwarden/docker-compose.yml
Normal file → Executable file
@@ -1,13 +1,16 @@
|
|||||||
---
|
|
||||||
version: "3.8"
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
bitwarden:
|
bitwarden:
|
||||||
|
container_name: bitwarden
|
||||||
env_file:
|
env_file:
|
||||||
- settings.env
|
- settings.env
|
||||||
image: ghcr.io/bitwarden/self-host:beta
|
image: ghcr.io/bitwarden/self-host:beta
|
||||||
restart: always
|
restart: always
|
||||||
ports:
|
# ports:
|
||||||
- "8080:8080"
|
# - "8080:8080"
|
||||||
volumes:
|
volumes:
|
||||||
- /zstore/Docker-volumes/Bitwarden:/etc/bitwarden
|
- /zstore/Docker-volumes/Bitwarden:/etc/bitwarden
|
||||||
|
|
||||||
|
networks:
|
||||||
|
default:
|
||||||
|
external: true
|
||||||
|
name: proxy
|
||||||
|
|||||||
0
Bitwarden/settings.env
Normal file → Executable file
0
Bitwarden/settings.env
Normal file → Executable file
18
Deluge/docker-compose.yml
Executable file
18
Deluge/docker-compose.yml
Executable file
@@ -0,0 +1,18 @@
|
|||||||
|
services:
|
||||||
|
deluge:
|
||||||
|
image: lscr.io/linuxserver/deluge:latest
|
||||||
|
container_name: deluge
|
||||||
|
environment:
|
||||||
|
- PUID=123
|
||||||
|
- PGID=124
|
||||||
|
- TZ=Europe/Prague
|
||||||
|
- DELUGE_LOGLEVEL=error #optional
|
||||||
|
volumes:
|
||||||
|
- /zstore/Docker-volumes/Deluge:/config
|
||||||
|
- /data/Downloads:/downloads
|
||||||
|
ports:
|
||||||
|
- 8112:8112
|
||||||
|
- 53755:53755
|
||||||
|
- 53755:53755/udp
|
||||||
|
- 58846:58846 #optional
|
||||||
|
restart: unless-stopped
|
||||||
0
Diun/diun.yml
Normal file → Executable file
0
Diun/diun.yml
Normal file → Executable file
0
Diun/docker-compose.yml
Normal file → Executable file
0
Diun/docker-compose.yml
Normal file → Executable file
4
Flexget/docker-compose.yml
Normal file → Executable file
4
Flexget/docker-compose.yml
Normal file → Executable file
@@ -13,6 +13,6 @@ services:
|
|||||||
- /zstore/Docker-volumes/Flexget:/downloads
|
- /zstore/Docker-volumes/Flexget:/downloads
|
||||||
environment:
|
environment:
|
||||||
- TZ=Europe/Prague
|
- TZ=Europe/Prague
|
||||||
- PUID=113
|
- PUID=123
|
||||||
- PGID=121
|
- PGID=124
|
||||||
|
|
||||||
|
|||||||
15
Gitea/docker-compose.yml
Normal file → Executable file
15
Gitea/docker-compose.yml
Normal file → Executable file
@@ -1,24 +1,25 @@
|
|||||||
version: "3"
|
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
gitea:
|
gitea:
|
||||||
external: false
|
external: false
|
||||||
|
proxy:
|
||||||
|
external: true
|
||||||
|
|
||||||
services:
|
services:
|
||||||
server:
|
server:
|
||||||
image: gitea/gitea:latest
|
image: gitea/gitea:latest
|
||||||
container_name: gitea
|
container_name: gitea
|
||||||
environment:
|
environment:
|
||||||
- USER_UID=121
|
- USER_UID=1000
|
||||||
- USER_GID=131
|
- USER_GID=1000
|
||||||
restart: always
|
restart: always
|
||||||
networks:
|
networks:
|
||||||
- gitea
|
- gitea
|
||||||
|
- proxy
|
||||||
volumes:
|
volumes:
|
||||||
- /zstore/Docker-volumes/Gitea:/data
|
- /zstore/Docker-volumes/Gitea:/data
|
||||||
- /home/git/.ssh/:/data/git/.ssh
|
- /home/git/.ssh/:/data/git/.ssh
|
||||||
- /etc/timezone:/etc/timezone:ro
|
- /etc/timezone:/etc/timezone:ro
|
||||||
- /etc/localtime:/etc/localtime:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
ports:
|
# ports:
|
||||||
- "3000:3000"
|
#- "3000:3000"
|
||||||
- "2222:22"
|
#- "2222:22"
|
||||||
|
|||||||
11
Gotify/docker-compose.yml
Normal file → Executable file
11
Gotify/docker-compose.yml
Normal file → Executable file
@@ -1,9 +1,14 @@
|
|||||||
version: "3"
|
|
||||||
services:
|
services:
|
||||||
gotify:
|
gotify:
|
||||||
|
container_name: gotify
|
||||||
image: gotify/server
|
image: gotify/server
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
# ports:
|
||||||
- 8282:80
|
# - 8282:80
|
||||||
volumes:
|
volumes:
|
||||||
- "/zstore/Docker-volumes/Gotify/gotify_data:/app/data"
|
- "/zstore/Docker-volumes/Gotify/gotify_data:/app/data"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
default:
|
||||||
|
external: true
|
||||||
|
name: proxy
|
||||||
|
|||||||
0
Immich/.env
Normal file → Executable file
0
Immich/.env
Normal file → Executable file
23
Immich/docker-compose.yml
Normal file → Executable file
23
Immich/docker-compose.yml
Normal file → Executable file
@@ -13,9 +13,9 @@ services:
|
|||||||
immich-server:
|
immich-server:
|
||||||
container_name: immich_server
|
container_name: immich_server
|
||||||
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
|
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
|
||||||
# extends:
|
extends:
|
||||||
# file: hwaccel.transcoding.yml
|
file: hwaccel.transcoding.yml
|
||||||
# service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
|
service: quicksync # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
|
||||||
volumes:
|
volumes:
|
||||||
# Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file
|
# Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file
|
||||||
- ${UPLOAD_LOCATION}:/usr/src/app/upload
|
- ${UPLOAD_LOCATION}:/usr/src/app/upload
|
||||||
@@ -25,8 +25,8 @@ services:
|
|||||||
- /zstore/photos/Album-Maly:/zstore/photos/Album-Maly:ro
|
- /zstore/photos/Album-Maly:/zstore/photos/Album-Maly:ro
|
||||||
env_file:
|
env_file:
|
||||||
- .env
|
- .env
|
||||||
ports:
|
# ports:
|
||||||
- '2283:2283'
|
# - '2283:2283'
|
||||||
depends_on:
|
depends_on:
|
||||||
- redis
|
- redis
|
||||||
- database
|
- database
|
||||||
@@ -38,10 +38,10 @@ services:
|
|||||||
container_name: immich_machine_learning
|
container_name: immich_machine_learning
|
||||||
# For hardware acceleration, add one of -[armnn, cuda, openvino] to the image tag.
|
# For hardware acceleration, add one of -[armnn, cuda, openvino] to the image tag.
|
||||||
# Example tag: ${IMMICH_VERSION:-release}-cuda
|
# Example tag: ${IMMICH_VERSION:-release}-cuda
|
||||||
image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
|
image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}-openvino
|
||||||
# extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration
|
extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration
|
||||||
# file: hwaccel.ml.yml
|
file: hwaccel.ml.yml
|
||||||
# service: cpu # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerated inference - use the `-wsl` version for WSL2 where applicable
|
service: openvino # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerated inference - use the `-wsl` version for WSL2 where applicable
|
||||||
volumes:
|
volumes:
|
||||||
- model-cache:/cache
|
- model-cache:/cache
|
||||||
env_file:
|
env_file:
|
||||||
@@ -74,3 +74,8 @@ services:
|
|||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
model-cache:
|
model-cache:
|
||||||
|
|
||||||
|
networks:
|
||||||
|
default:
|
||||||
|
external: true
|
||||||
|
name: proxy
|
||||||
|
|||||||
57
Immich/hwaccel.ml.yml
Executable file
57
Immich/hwaccel.ml.yml
Executable file
@@ -0,0 +1,57 @@
|
|||||||
|
# Configurations for hardware-accelerated machine learning
|
||||||
|
|
||||||
|
# If using Unraid or another platform that doesn't allow multiple Compose files,
|
||||||
|
# you can inline the config for a backend by copying its contents
|
||||||
|
# into the immich-machine-learning service in the docker-compose.yml file.
|
||||||
|
|
||||||
|
# See https://docs.immich.app/features/ml-hardware-acceleration for info on usage.
|
||||||
|
|
||||||
|
services:
|
||||||
|
armnn:
|
||||||
|
devices:
|
||||||
|
- /dev/mali0:/dev/mali0
|
||||||
|
volumes:
|
||||||
|
- /lib/firmware/mali_csffw.bin:/lib/firmware/mali_csffw.bin:ro # Mali firmware for your chipset (not always required depending on the driver)
|
||||||
|
- /usr/lib/libmali.so:/usr/lib/libmali.so:ro # Mali driver for your chipset (always required)
|
||||||
|
|
||||||
|
rknn:
|
||||||
|
security_opt:
|
||||||
|
- systempaths=unconfined
|
||||||
|
- apparmor=unconfined
|
||||||
|
devices:
|
||||||
|
- /dev/dri:/dev/dri
|
||||||
|
|
||||||
|
cpu: {}
|
||||||
|
|
||||||
|
cuda:
|
||||||
|
deploy:
|
||||||
|
resources:
|
||||||
|
reservations:
|
||||||
|
devices:
|
||||||
|
- driver: nvidia
|
||||||
|
count: 1
|
||||||
|
capabilities:
|
||||||
|
- gpu
|
||||||
|
|
||||||
|
rocm:
|
||||||
|
group_add:
|
||||||
|
- video
|
||||||
|
devices:
|
||||||
|
- /dev/dri:/dev/dri
|
||||||
|
- /dev/kfd:/dev/kfd
|
||||||
|
|
||||||
|
openvino:
|
||||||
|
device_cgroup_rules:
|
||||||
|
- 'c 189:* rmw'
|
||||||
|
devices:
|
||||||
|
- /dev/dri:/dev/dri
|
||||||
|
volumes:
|
||||||
|
- /dev/bus/usb:/dev/bus/usb
|
||||||
|
|
||||||
|
openvino-wsl:
|
||||||
|
devices:
|
||||||
|
- /dev/dri:/dev/dri
|
||||||
|
- /dev/dxg:/dev/dxg
|
||||||
|
volumes:
|
||||||
|
- /dev/bus/usb:/dev/bus/usb
|
||||||
|
- /usr/lib/wsl:/usr/lib/wsl
|
||||||
55
Immich/hwaccel.transcoding.yml
Executable file
55
Immich/hwaccel.transcoding.yml
Executable file
@@ -0,0 +1,55 @@
|
|||||||
|
# Configurations for hardware-accelerated transcoding
|
||||||
|
|
||||||
|
# If using Unraid or another platform that doesn't allow multiple Compose files,
|
||||||
|
# you can inline the config for a backend by copying its contents
|
||||||
|
# into the immich-microservices service in the docker-compose.yml file.
|
||||||
|
|
||||||
|
# See https://docs.immich.app/features/hardware-transcoding for more info on using hardware transcoding.
|
||||||
|
|
||||||
|
services:
|
||||||
|
cpu: {}
|
||||||
|
|
||||||
|
nvenc:
|
||||||
|
deploy:
|
||||||
|
resources:
|
||||||
|
reservations:
|
||||||
|
devices:
|
||||||
|
- driver: nvidia
|
||||||
|
count: 1
|
||||||
|
capabilities:
|
||||||
|
- gpu
|
||||||
|
- compute
|
||||||
|
- video
|
||||||
|
|
||||||
|
quicksync:
|
||||||
|
devices:
|
||||||
|
- /dev/dri:/dev/dri
|
||||||
|
|
||||||
|
rkmpp:
|
||||||
|
security_opt: # enables full access to /sys and /proc, still far better than privileged: true
|
||||||
|
- systempaths=unconfined
|
||||||
|
- apparmor=unconfined
|
||||||
|
group_add:
|
||||||
|
- video
|
||||||
|
devices:
|
||||||
|
- /dev/rga:/dev/rga
|
||||||
|
- /dev/dri:/dev/dri
|
||||||
|
- /dev/dma_heap:/dev/dma_heap
|
||||||
|
- /dev/mpp_service:/dev/mpp_service
|
||||||
|
#- /dev/mali0:/dev/mali0 # only required to enable OpenCL-accelerated HDR -> SDR tonemapping
|
||||||
|
volumes:
|
||||||
|
#- /etc/OpenCL:/etc/OpenCL:ro # only required to enable OpenCL-accelerated HDR -> SDR tonemapping
|
||||||
|
#- /usr/lib/aarch64-linux-gnu/libmali.so.1:/usr/lib/aarch64-linux-gnu/libmali.so.1:ro # only required to enable OpenCL-accelerated HDR -> SDR tonemapping
|
||||||
|
|
||||||
|
vaapi:
|
||||||
|
devices:
|
||||||
|
- /dev/dri:/dev/dri
|
||||||
|
|
||||||
|
vaapi-wsl: # use this for VAAPI if you're running Immich in WSL2
|
||||||
|
devices:
|
||||||
|
- /dev/dri:/dev/dri
|
||||||
|
- /dev/dxg:/dev/dxg
|
||||||
|
volumes:
|
||||||
|
- /usr/lib/wsl:/usr/lib/wsl
|
||||||
|
environment:
|
||||||
|
- LIBVA_DRIVER_NAME=d3d12
|
||||||
@@ -22,19 +22,20 @@ services:
|
|||||||
image: postgres:16
|
image: postgres:16
|
||||||
volumes:
|
volumes:
|
||||||
- /zstore/Docker-volumes/Joplin/postgres:/var/lib/postgresql/data
|
- /zstore/Docker-volumes/Joplin/postgres:/var/lib/postgresql/data
|
||||||
ports:
|
# ports:
|
||||||
- 5432:5432
|
# - 5432:5432
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
- POSTGRES_PASSWORD=lachim23
|
- POSTGRES_PASSWORD=lachim23
|
||||||
- POSTGRES_USER=joplin
|
- POSTGRES_USER=joplin
|
||||||
- POSTGRES_DB=joplin
|
- POSTGRES_DB=joplin
|
||||||
app:
|
app:
|
||||||
|
container_name: joplin
|
||||||
image: joplin/server:latest
|
image: joplin/server:latest
|
||||||
depends_on:
|
depends_on:
|
||||||
- db
|
- db
|
||||||
ports:
|
# ports:
|
||||||
- 22300:22300
|
# - 22300:22300
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
- APP_PORT=22300
|
- APP_PORT=22300
|
||||||
@@ -45,3 +46,8 @@ services:
|
|||||||
- POSTGRES_USER=joplin
|
- POSTGRES_USER=joplin
|
||||||
- POSTGRES_PORT=5432
|
- POSTGRES_PORT=5432
|
||||||
- POSTGRES_HOST=db
|
- POSTGRES_HOST=db
|
||||||
|
|
||||||
|
networks:
|
||||||
|
default:
|
||||||
|
external: true
|
||||||
|
name: proxy
|
||||||
|
|||||||
33
Kopia/docker-compose.yaml
Executable file
33
Kopia/docker-compose.yaml
Executable file
@@ -0,0 +1,33 @@
|
|||||||
|
services:
|
||||||
|
kopia:
|
||||||
|
image: kopia/kopia:latest
|
||||||
|
container_name: kopia
|
||||||
|
restart: unless-stopped
|
||||||
|
# ports:
|
||||||
|
# - 51515:51515
|
||||||
|
# Setup the server that provides the web gui
|
||||||
|
command:
|
||||||
|
- server
|
||||||
|
- start
|
||||||
|
- --insecure
|
||||||
|
- --address=0.0.0.0:51515
|
||||||
|
- --disable-csrf-token-checks
|
||||||
|
- --server-username=kopia
|
||||||
|
- --server-password=Kop495@ia23med
|
||||||
|
environment:
|
||||||
|
# Set repository password
|
||||||
|
KOPIA_PASSWORD: "JyhcPWQgAshIE1"
|
||||||
|
USER: "backup@1db80a7b6568"
|
||||||
|
volumes:
|
||||||
|
# Mount local folders needed by kopia
|
||||||
|
- /zstore/Docker-volumes/Kopia:/app/config
|
||||||
|
- /zstore/Docker-volumes/Kopia:/app/cache
|
||||||
|
- /zstore/Docker-volumes/Kopia:/app/logs
|
||||||
|
- /backup/kopia:/backup/kopia
|
||||||
|
- /zstore/photos:/zstore/photos:ro
|
||||||
|
- /zstore/Docker-volumes:/zstore/Docker-volumes:ro
|
||||||
|
|
||||||
|
networks:
|
||||||
|
default:
|
||||||
|
external: true
|
||||||
|
name: proxy
|
||||||
0
Mealie/docker-compose.yml
Normal file → Executable file
0
Mealie/docker-compose.yml
Normal file → Executable file
5
NPM/docker-compose.yml
Normal file → Executable file
5
NPM/docker-compose.yml
Normal file → Executable file
@@ -12,3 +12,8 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- /zstore/Docker-volumes/NPM/data:/data
|
- /zstore/Docker-volumes/NPM/data:/data
|
||||||
- /zstore/Docker-volumes/NPM/letsencrypt:/etc/letsencrypt
|
- /zstore/Docker-volumes/NPM/letsencrypt:/etc/letsencrypt
|
||||||
|
|
||||||
|
networks:
|
||||||
|
default:
|
||||||
|
external: true
|
||||||
|
name: proxy
|
||||||
|
|||||||
0
NebulaSync/docker-compose.yml
Normal file → Executable file
0
NebulaSync/docker-compose.yml
Normal file → Executable file
15
Plex/docker-compose.yml
Executable file
15
Plex/docker-compose.yml
Executable file
@@ -0,0 +1,15 @@
|
|||||||
|
services:
|
||||||
|
plex:
|
||||||
|
image: lscr.io/linuxserver/plex:latest
|
||||||
|
container_name: plex
|
||||||
|
network_mode: host
|
||||||
|
environment:
|
||||||
|
- TZ=Europe/Prague
|
||||||
|
- VERSION=latest
|
||||||
|
devices:
|
||||||
|
- /dev/dri:/dev/dri
|
||||||
|
volumes:
|
||||||
|
- /zstore/Docker-volumes/Plex:/config
|
||||||
|
- /zstore/media:/zstore/media
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
9
Pydio-cells/docker-compose.yml
Normal file → Executable file
9
Pydio-cells/docker-compose.yml
Normal file → Executable file
@@ -1,10 +1,10 @@
|
|||||||
version: '3.7'
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
cells:
|
cells:
|
||||||
|
container_name: cells-app
|
||||||
image: pydio/cells:latest
|
image: pydio/cells:latest
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports: ["8383:8080"]
|
# ports: ["8383:8080"]
|
||||||
environment:
|
environment:
|
||||||
CELLS_SITE_EXTERNAL: "https://cells.yugi.cz"
|
CELLS_SITE_EXTERNAL: "https://cells.yugi.cz"
|
||||||
CELLS_SITE_NO_TLS: "1"
|
CELLS_SITE_NO_TLS: "1"
|
||||||
@@ -28,3 +28,8 @@ volumes:
|
|||||||
data: {}
|
data: {}
|
||||||
cellsdir: {}
|
cellsdir: {}
|
||||||
mysqldir: {}
|
mysqldir: {}
|
||||||
|
|
||||||
|
networks:
|
||||||
|
default:
|
||||||
|
external: true
|
||||||
|
name: proxy
|
||||||
|
|||||||
0
Pydio/docker-compose.yml
Normal file → Executable file
0
Pydio/docker-compose.yml
Normal file → Executable file
10
Tautulli/docker-compose.yml
Normal file → Executable file
10
Tautulli/docker-compose.yml
Normal file → Executable file
@@ -1,4 +1,3 @@
|
|||||||
version: '3'
|
|
||||||
services:
|
services:
|
||||||
tautulli:
|
tautulli:
|
||||||
image: ghcr.io/tautulli/tautulli
|
image: ghcr.io/tautulli/tautulli
|
||||||
@@ -8,5 +7,10 @@ services:
|
|||||||
- /zstore/Docker-volumes/Tautulli:/config
|
- /zstore/Docker-volumes/Tautulli:/config
|
||||||
environment:
|
environment:
|
||||||
- TZ=Europe/Prague
|
- TZ=Europe/Prague
|
||||||
ports:
|
# ports:
|
||||||
- 8181:8181
|
# - 8181:8181
|
||||||
|
|
||||||
|
networks:
|
||||||
|
default:
|
||||||
|
external: true
|
||||||
|
name: proxy
|
||||||
|
|||||||
0
Tautulli/index.html
Normal file → Executable file
0
Tautulli/index.html
Normal file → Executable file
0
Teamspeak/docker-compose.yml
Normal file → Executable file
0
Teamspeak/docker-compose.yml
Normal file → Executable file
Reference in New Issue
Block a user