kleine Anpassung und Syncthing

This commit is contained in:
borgal
2022-07-18 20:27:17 +00:00
parent 99b598d1d4
commit 120c157571
5 changed files with 37 additions and 10 deletions

View File

@@ -10,6 +10,7 @@ services:
MYSQL_USER: ${MYSQL_USER}
MYSQL_PASSWORD: ${MYSQL_PASSWORD}
MYSQL_DATABASE: filerun
restart: unless-stopped
volumes:
- ./db:/var/lib/mysql
@@ -28,6 +29,7 @@ services:
- db:db
ports:
- "8013:80"
restart: unless-stopped
volumes:
- ./html:/var/www/html
- ./user-files:/user-files

View File

@@ -8,7 +8,9 @@ services:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
- JELLYFIN_PublishedServerUrl= #optional
- JELLYFIN_PublishedServerUrl=192.168.0.111
devices:
- /dev/dri:/dev/dri
volumes:
- ./config:/config
- ./tvseries:/data/tvshows

View File

@@ -4,19 +4,18 @@ services:
nodered:
container_name: node-red
image: nodered/node-red
user: root
# user: root
ports:
- "1880:1880"
dns:
- 192.168.0.1
- 8.8.8.8
# dns:
# - 192.168.0.1
# - 8.8.8.8
volumes:
- /opt/node-red/data:/data
- /etc/localtime:/etc/localtime:ro
# - /dev/serial/by-id:/dev/serial/by-id
# devices:
# - /dev/ttyACM0:/dev/ttyACM0
- ./data:/data
# - /etc/localtime:/etc/localtime:ro
environment:
- TZ=Europe/Berlin
- PGID=1000
- PUID=1000
restart: always
network_mode: host

View File

@@ -38,10 +38,14 @@ heimdall | 8143
webserver | 8180
code-Server | 8181
sshwifty | 8182
syncthing | 8384
unifi controller | 8443
openhab | 8444
drawio | 8445
youTubeDL | 8998
portainer | 9000
unifi controller | 10001
syncthing TCP | 22000
syncthing UDP | 22000
syncthing UDP | 21027
mumble | 64738

View File

@@ -0,0 +1,20 @@
version: "2.1"
services:
syncthing:
image: lscr.io/linuxserver/syncthing:latest
container_name: syncthing
hostname: syncthing #optional
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
volumes:
- ./config:/config
- ./Borgal:/Borgal
- ./Sandra:/Sandra
ports:
- 8384:8384
- 22000:22000/tcp
- 22000:22000/udp
- 21027:21027/udp
restart: unless-stopped