Dateien nach „/“ hochladen
This commit is contained in:
parent
3846364f3b
commit
f3e2051f46
5 changed files with 41 additions and 0 deletions
8
install_matrix_synapse
Normal file
8
install_matrix_synapse
Normal file
|
@ -0,0 +1,8 @@
|
|||
#!/bin/bash
|
||||
docker run --rm \
|
||||
--user 1000:100 \
|
||||
-v /volume1/docker/synapse/data:/data \
|
||||
-e SYNAPSE_CONFIG_PATH=/data/homeserver.yaml \
|
||||
-e SYNAPSE_SERVER_NAME=your.matrixserver.com \
|
||||
-e SYNAPSE_REPORT_STATS=yes \
|
||||
matrixdotorg/synapse:latest generate
|
7
install_onlyoffice_ee
Normal file
7
install_onlyoffice_ee
Normal file
|
@ -0,0 +1,7 @@
|
|||
docker run -d --name=onlyoffice \
|
||||
-p 9981:80 \
|
||||
-v /volume1/docker/onlyoffice/logs:/var/log/onlyoffice \
|
||||
-v /volume1/docker/onlyoffice/data:/var/www/onlyoffice/Data \
|
||||
--restart always \
|
||||
-e JWT_ENABLED='true' -e JWT_SECRET='your-secret-key' \
|
||||
onlyoffice/documentserver-ee
|
12
install_pihole
Normal file
12
install_pihole
Normal file
|
@ -0,0 +1,12 @@
|
|||
docker run -d --name=pihole \
|
||||
-e WEB_PORT=8080 \
|
||||
-e WEBPASSWORD=password \
|
||||
-e FTLCONF_LOCAL_IPV4=your_nas_ip \
|
||||
-e TZ=Europe/Berlin \
|
||||
-e DNSMASQ_USER=root \
|
||||
-e DNSMASQ_LISTENING=local \
|
||||
-v /volume1/docker/pihole/dnsmasq.d:/etc/dnsmasq.d \
|
||||
-v /volume1/docker/pihole/pihole:/etc/pihole \
|
||||
--net=host \
|
||||
--restart always \
|
||||
pihole/pihole
|
6
install_portainer_ee
Normal file
6
install_portainer_ee
Normal file
|
@ -0,0 +1,6 @@
|
|||
docker run -d --name=portainer \
|
||||
-p 9000:9000 \
|
||||
-v /var/run/docker.sock:/var/run/docker.sock \
|
||||
-v /volume1/docker/portainer:/data \
|
||||
--restart=always \
|
||||
portainer/portainer-ee
|
8
install_uptime_kuma
Normal file
8
install_uptime_kuma
Normal file
|
@ -0,0 +1,8 @@
|
|||
docker run -d --name=uptime_kuma \
|
||||
-p 3444:3001 \
|
||||
-e PUID=1000 \
|
||||
-e PGID=100 \
|
||||
-e TZ=Europe/Berlin \
|
||||
-v /volume1/docker/uptimekuma:/app/data \
|
||||
--restart always \
|
||||
louislam/uptime-kuma
|
Loading…
Add table
Reference in a new issue