kleine Anpassung und Syncthing
This commit is contained in:
@@ -10,6 +10,7 @@ services:
|
|||||||
MYSQL_USER: ${MYSQL_USER}
|
MYSQL_USER: ${MYSQL_USER}
|
||||||
MYSQL_PASSWORD: ${MYSQL_PASSWORD}
|
MYSQL_PASSWORD: ${MYSQL_PASSWORD}
|
||||||
MYSQL_DATABASE: filerun
|
MYSQL_DATABASE: filerun
|
||||||
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- ./db:/var/lib/mysql
|
- ./db:/var/lib/mysql
|
||||||
|
|
||||||
@@ -28,6 +29,7 @@ services:
|
|||||||
- db:db
|
- db:db
|
||||||
ports:
|
ports:
|
||||||
- "8013:80"
|
- "8013:80"
|
||||||
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- ./html:/var/www/html
|
- ./html:/var/www/html
|
||||||
- ./user-files:/user-files
|
- ./user-files:/user-files
|
||||||
|
|||||||
@@ -8,7 +8,9 @@ services:
|
|||||||
- PUID=1000
|
- PUID=1000
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
- TZ=Europe/Berlin
|
- TZ=Europe/Berlin
|
||||||
- JELLYFIN_PublishedServerUrl= #optional
|
- JELLYFIN_PublishedServerUrl=192.168.0.111
|
||||||
|
devices:
|
||||||
|
- /dev/dri:/dev/dri
|
||||||
volumes:
|
volumes:
|
||||||
- ./config:/config
|
- ./config:/config
|
||||||
- ./tvseries:/data/tvshows
|
- ./tvseries:/data/tvshows
|
||||||
|
|||||||
@@ -4,19 +4,18 @@ services:
|
|||||||
nodered:
|
nodered:
|
||||||
container_name: node-red
|
container_name: node-red
|
||||||
image: nodered/node-red
|
image: nodered/node-red
|
||||||
user: root
|
# user: root
|
||||||
ports:
|
ports:
|
||||||
- "1880:1880"
|
- "1880:1880"
|
||||||
dns:
|
# dns:
|
||||||
- 192.168.0.1
|
# - 192.168.0.1
|
||||||
- 8.8.8.8
|
# - 8.8.8.8
|
||||||
volumes:
|
volumes:
|
||||||
- /opt/node-red/data:/data
|
- ./data:/data
|
||||||
- /etc/localtime:/etc/localtime:ro
|
# - /etc/localtime:/etc/localtime:ro
|
||||||
# - /dev/serial/by-id:/dev/serial/by-id
|
|
||||||
# devices:
|
|
||||||
# - /dev/ttyACM0:/dev/ttyACM0
|
|
||||||
environment:
|
environment:
|
||||||
- TZ=Europe/Berlin
|
- TZ=Europe/Berlin
|
||||||
|
- PGID=1000
|
||||||
|
- PUID=1000
|
||||||
restart: always
|
restart: always
|
||||||
network_mode: host
|
network_mode: host
|
||||||
|
|||||||
4
ports.md
4
ports.md
@@ -38,10 +38,14 @@ heimdall | 8143
|
|||||||
webserver | 8180
|
webserver | 8180
|
||||||
code-Server | 8181
|
code-Server | 8181
|
||||||
sshwifty | 8182
|
sshwifty | 8182
|
||||||
|
syncthing | 8384
|
||||||
unifi controller | 8443
|
unifi controller | 8443
|
||||||
openhab | 8444
|
openhab | 8444
|
||||||
drawio | 8445
|
drawio | 8445
|
||||||
youTubeDL | 8998
|
youTubeDL | 8998
|
||||||
portainer | 9000
|
portainer | 9000
|
||||||
unifi controller | 10001
|
unifi controller | 10001
|
||||||
|
syncthing TCP | 22000
|
||||||
|
syncthing UDP | 22000
|
||||||
|
syncthing UDP | 21027
|
||||||
mumble | 64738
|
mumble | 64738
|
||||||
|
|||||||
20
syncthing/docker-compose.yml
Normal file
20
syncthing/docker-compose.yml
Normal 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
|
||||||
Reference in New Issue
Block a user