Compare commits
12 Commits
9a46bb61dd
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 9b3329597f | |||
| bb82ef57f5 | |||
| bb5ee11bba | |||
| 820aef3bf4 | |||
| 04d37ee12c | |||
| 4256ada864 | |||
| f3a99c1ae7 | |||
| acec983ff1 | |||
| c95c98a7b6 | |||
| af0f33498f | |||
| b4465e0e7f | |||
| 139c6c6c8a |
@@ -1,17 +0,0 @@
|
|||||||
# For NEXTCLOUDAIO
|
|
||||||
#
|
|
||||||
services:
|
|
||||||
collabora:
|
|
||||||
image: collabora/code:latest
|
|
||||||
container_name: collabora
|
|
||||||
expose:
|
|
||||||
- 9980:9980
|
|
||||||
ports:
|
|
||||||
- 9980:9980
|
|
||||||
cap_add:
|
|
||||||
- MKNOD
|
|
||||||
restart: unless-stopped
|
|
||||||
environment:
|
|
||||||
- extra_params=-o:tls.enable=false
|
|
||||||
- domain=amudanan.johnsnexus.click
|
|
||||||
|
|
||||||
@@ -17,7 +17,7 @@ services:
|
|||||||
- "DIUN_PROVIDERS_DOCKER_WATCHBYDEFAULT=true"
|
- "DIUN_PROVIDERS_DOCKER_WATCHBYDEFAULT=true"
|
||||||
|
|
||||||
- "DIUN_NOTIF_GOTIFY_ENDPOINT=http://192.168.1.4:8111" # IP address of ELITE cluster for GOTIFY
|
- "DIUN_NOTIF_GOTIFY_ENDPOINT=http://192.168.1.4:8111" # IP address of ELITE cluster for GOTIFY
|
||||||
- "DIUN_NOTIF_GOTIFY_TOKEN=ADOe9h3-Q3XlSHG" # get your token from Gotify UI
|
- "DIUN_NOTIF_GOTIFY_TOKEN=A490zD2Xl3b5wvv" # get your token from Gotify UI
|
||||||
- "DIUN_NOTIF_GOTIFY_PRIORITY=5"
|
- "DIUN_NOTIF_GOTIFY_PRIORITY=5"
|
||||||
- "DIUN_NOTIF_GOTIFY_TIMEOUT=10s"
|
- "DIUN_NOTIF_GOTIFY_TIMEOUT=10s"
|
||||||
labels:
|
labels:
|
||||||
|
|||||||
21
mosquitto/mosquitto.conf
Normal file
21
mosquitto/mosquitto.conf
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
persistence true
|
||||||
|
persistence_location /mosquitto/data/
|
||||||
|
log_type subscribe
|
||||||
|
log_type unsubscribe
|
||||||
|
log_type websockets
|
||||||
|
log_type error
|
||||||
|
log_type warning
|
||||||
|
log_type notice
|
||||||
|
log_type information
|
||||||
|
log_dest file /mosquitto/log/mosquitto.log
|
||||||
|
log_dest stdout
|
||||||
|
|
||||||
|
password_file /mosquitto/data/passwd_file
|
||||||
|
allow_anonymous false
|
||||||
|
|
||||||
|
# MQTT Default listener
|
||||||
|
listener 1883 0.0.0.0
|
||||||
|
|
||||||
|
# MQTT over WebSockets
|
||||||
|
listener 9001 0.0.0.0
|
||||||
|
protocol websockets
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
services:
|
|
||||||
netatalk:
|
|
||||||
image: netatalk/netatalk:latest
|
|
||||||
container_name: netatalk
|
|
||||||
network_mode: "host"
|
|
||||||
ports:
|
|
||||||
- 548:548
|
|
||||||
cap_add:
|
|
||||||
- NET_ADMIN
|
|
||||||
security_opt:
|
|
||||||
- apparmor=unconfined
|
|
||||||
volumes:
|
|
||||||
- /media/disk/afpshare:/mnt/afpshare
|
|
||||||
- /media/disk/afpbackup:/mnt/afpbackup
|
|
||||||
- /media/disk/afpconf:/etc/netatalk
|
|
||||||
- /var/run/dbus:/var/run/dbus
|
|
||||||
environment:
|
|
||||||
- AFP_USER=mary
|
|
||||||
- AFP_PASS=john1955
|
|
||||||
- AFP_GROUP=afpusers
|
|
||||||
- ATALKD_INTERFACE=eth0
|
|
||||||
- TZ=Europe/London
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
30
netplan/50-cloud-init.yaml
Normal file
30
netplan/50-cloud-init.yaml
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
network:
|
||||||
|
version: 2
|
||||||
|
renderer: networkd
|
||||||
|
ethernets:
|
||||||
|
eth0:
|
||||||
|
dhcp4: yes
|
||||||
|
dhcp6: no
|
||||||
|
wifis:
|
||||||
|
wlan0:
|
||||||
|
dhcp4: yes
|
||||||
|
dhcp6: no
|
||||||
|
access-points:
|
||||||
|
"EE-ZSA1M2":
|
||||||
|
password: "boats-ROAM-not-TWO"
|
||||||
|
#
|
||||||
|
wlx90de80dc3a80:
|
||||||
|
dhcp4: no
|
||||||
|
dhcp6: no
|
||||||
|
access-points:
|
||||||
|
"EE-ZSA1M2":
|
||||||
|
password: "boats-ROAM-not-TWO"
|
||||||
|
# "EE-7PJ9G6":
|
||||||
|
# password: "boatsROAMnotTWO2"
|
||||||
|
addresses:
|
||||||
|
- 192.168.1.16/24
|
||||||
|
routes:
|
||||||
|
- to: default
|
||||||
|
via: 192.168.1.254
|
||||||
|
nameservers:
|
||||||
|
addresses: [192.168.1.23,192.168.1.254,8.8.8.8,8.8.4.4]
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
services:
|
|
||||||
nextcloud-aio-mastercontainer:
|
|
||||||
image: ghcr.io/nextcloud-releases/all-in-one:latest
|
|
||||||
init: true
|
|
||||||
restart: always
|
|
||||||
container_name: nextcloud-aio-mastercontainer # This line is not allowed to be changed as otherwise AIO will not work correctly
|
|
||||||
volumes:
|
|
||||||
- nextcloud_aio_mastercontainer:/mnt/docker-aio-config # This line is not allowed to be changed as otherwise the built-in backup solution will not work
|
|
||||||
- /var/run/docker.sock:/var/run/docker.sock:ro # May be changed on macOS, Windows or docker rootless. See the applicable documentation. If adjusting, don't forget to also set 'WATCHTOWER_DOCKER_SOCKET_PATH'!
|
|
||||||
network_mode: bridge # add to the same network as docker run would do
|
|
||||||
ports:
|
|
||||||
# - 80:80 # Can be removed when running behind a web server or reverse proxy (like Apache, Nginx, Caddy, Cloudflare Tunnel and else). See https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md
|
|
||||||
- 8080:8080
|
|
||||||
# - 8443:8443 # Can be removed when running behind a web server or reverse proxy (like Apache, Nginx, Caddy, Cloudflare Tunnel and else). See https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md
|
|
||||||
environment: # Is needed when using any of the options below
|
|
||||||
# AIO_DISABLE_BACKUP_SECTION: false # Setting this to true allows to hide the backup section in the AIO interface. See https://github.com/nextcloud/all-in-one#how-to-disable-the-backup-section
|
|
||||||
- APACHE_PORT=11000 # Is needed when running behind a web server or reverse proxy (like Apache, Nginx, Caddy, Cloudflare Tunnel and else). See https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md
|
|
||||||
- APACHE_IP_BINDING=0.0.0.0 # Should be set when running behind a web server or reverse proxy (like Apache, Nginx, Caddy, Cloudflare Tunnel and else) that is running on the same host. See https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md
|
|
||||||
- APACHE_ADDITIONAL_NETWORK=jda_net # (Optional) Connect the apache container to an additional docker network. Needed when behind a web server or reverse proxy (like Apache, Nginx, Caddy, Cloudflare Tunnel and else) running in a different docker network on same server. See https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md
|
|
||||||
# BORG_RETENTION_POLICY: --keep-within=7d --keep-weekly=4 --keep-monthly=6 # Allows to adjust borgs retention policy. See https://github.com/nextcloud/all-in-one#how-to-adjust-borgs-retention-policy
|
|
||||||
# COLLABORA_SECCOMP_DISABLED: false # Setting this to true allows to disable Collabora's Seccomp feature. See https://github.com/nextcloud/all-in-one#how-to-disable-collaboras-seccomp-feature
|
|
||||||
# FULLTEXTSEARCH_JAVA_OPTIONS: "-Xms1024M -Xmx1024M" # Allows to adjust the fulltextsearch java options. See https://github.com/nextcloud/all-in-one#how-to-adjust-the-fulltextsearch-java-options
|
|
||||||
- NEXTCLOUD_DATADIR=/mnt/sda1/nextcloudaio/ncdata # Allows to set the host directory for Nextcloud's datadir. ⚠️⚠️⚠️ Warning: do not set or adjust this value after the initial Nextcloud installation is done! See https://github.com/nextcloud/all-in-one#how-to-change-the-default-location-of-nextclouds-datadir
|
|
||||||
- NEXTCLOUD_MOUNT=/mnt/sda1/nextcloudaio/files # Allows the Nextcloud container to access the chosen directory on the host. See https://github.com/nextcloud/all-in-one#how-to-allow-the-nextcloud-container-to-access-directories-on-the-host
|
|
||||||
# NEXTCLOUD_UPLOAD_LIMIT: 16G # Can be adjusted if you need more. See https://github.com/nextcloud/all-in-one#how-to-adjust-the-upload-limit-for-nextcloud
|
|
||||||
# NEXTCLOUD_MAX_TIME: 3600 # Can be adjusted if you need more. See https://github.com/nextcloud/all-in-one#how-to-adjust-the-max-execution-time-for-nextcloud
|
|
||||||
# NEXTCLOUD_MEMORY_LIMIT: 512M # Can be adjusted if you need more. See https://github.com/nextcloud/all-in-one#how-to-adjust-the-php-memory-limit-for-nextcloud
|
|
||||||
# NEXTCLOUD_TRUSTED_CACERTS_DIR: /path/to/my/cacerts # CA certificates in this directory will be trusted by the OS of the nextcloud container (Useful e.g. for LDAPS) See https://github.com/nextcloud/all-in-one#how-to-trust-user-defined-certification-authorities-ca
|
|
||||||
# NEXTCLOUD_STARTUP_APPS: deck twofactor_totp tasks calendar contacts notes # Allows to modify the Nextcloud apps that are installed on starting AIO the first time. See https://github.com/nextcloud/all-in-one#how-to-change-the-nextcloud-apps-that-are-installed-on-the-first-startup
|
|
||||||
# NEXTCLOUD_ADDITIONAL_APKS: imagemagick # This allows to add additional packages to the Nextcloud container permanently. Default is imagemagick but can be overwritten by modifying this value. See https://github.com/nextcloud/all-in-one#how-to-add-os-packages-permanently-to-the-nextcloud-container
|
|
||||||
# NEXTCLOUD_ADDITIONAL_PHP_EXTENSIONS: imagick # This allows to add additional php extensions to the Nextcloud container permanently. Default is imagick but can be overwritten by modifying this value. See https://github.com/nextcloud/all-in-one#how-to-add-php-extensions-permanently-to-the-nextcloud-container
|
|
||||||
# NEXTCLOUD_ENABLE_DRI_DEVICE: true # This allows to enable the /dev/dri device for containers that profit from it. ⚠️⚠️⚠️ Warning: this only works if the '/dev/dri' device is present on the host! If it should not exist on your host, don't set this to true as otherwise the Nextcloud container will fail to start! See https://github.com/nextcloud/all-in-one#how-to-enable-hardware-acceleration-for-nextcloud
|
|
||||||
# NEXTCLOUD_ENABLE_NVIDIA_GPU: true # This allows to enable the NVIDIA runtime and GPU access for containers that profit from it. ⚠️⚠️⚠️ Warning: this only works if an NVIDIA gpu is installed on the server. See https://github.com/nextcloud/all-in-one#how-to-enable-hardware-acceleration-for-nextcloud.
|
|
||||||
# NEXTCLOUD_KEEP_DISABLED_APPS: false # Setting this to true will keep Nextcloud apps that are disabled in the AIO interface and not uninstall them if they should be installed. See https://github.com/nextcloud/all-in-one#how-to-keep-disabled-apps
|
|
||||||
- SKIP_DOMAIN_VALIDATION=true # This should only be set to true if things are correctly configured. See https://github.com/nextcloud/all-in-one?tab=readme-ov-file#how-to-skip-the-domain-validation
|
|
||||||
# TALK_PORT: 3478 # This allows to adjust the port that the talk container is using which is exposed on the host. See https://github.com/nextcloud/all-in-one#how-to-adjust-the-talk-port
|
|
||||||
# WATCHTOWER_DOCKER_SOCKET_PATH: /var/run/docker.sock # Needs to be specified if the docker socket on the host is not located in the default '/var/run/docker.sock'. Otherwise mastercontainer updates will fail. For macos it needs to be '/var/run/docker.sock'
|
|
||||||
# security_opt: ["label:disable"] # Is needed when using SELinux
|
|
||||||
|
|
||||||
volumes: # If you want to store the data on a different drive, see https://github.com/nextcloud/all-in-one#how-to-store-the-filesinstallation-on-a-separate-drive
|
|
||||||
nextcloud_aio_mastercontainer:
|
|
||||||
name: nextcloud_aio_mastercontainer # This line is not allowed to be changed as otherwise the built-in backup solution will not work
|
|
||||||
19
node-exporter/docker-compose.yml
Normal file
19
node-exporter/docker-compose.yml
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
version: '3.8'
|
||||||
|
|
||||||
|
services:
|
||||||
|
node-exporter:
|
||||||
|
image: prom/node-exporter:latest
|
||||||
|
container_name: node-exporter
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- /proc:/host/proc:ro
|
||||||
|
- /sys:/host/sys:ro
|
||||||
|
- /:/rootfs:ro
|
||||||
|
command:
|
||||||
|
- '--path.procfs=/host/proc'
|
||||||
|
- '--path.rootfs=/rootfs'
|
||||||
|
- '--path.sysfs=/host/sys'
|
||||||
|
- '--collector.filesystem.mount-points-exclude=^/(sys|proc|dev|host|etc)($$|/)'
|
||||||
|
ports:
|
||||||
|
- 9100:9100
|
||||||
|
|
||||||
8
openspeedtest/docker-compose.yml
Normal file
8
openspeedtest/docker-compose.yml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
services:
|
||||||
|
speedtest:
|
||||||
|
restart: unless-stopped
|
||||||
|
container_name: openspeedtest
|
||||||
|
ports:
|
||||||
|
- '3000:3000'
|
||||||
|
- '3001:3001'
|
||||||
|
image: openspeedtest/latest
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
services:
|
services:
|
||||||
uptime-kuma:
|
uptime-kuma:
|
||||||
image: louislam/uptime-kuma:2
|
image: louislam/uptime-kuma:2.2.1
|
||||||
container_name: uptime-kuma
|
container_name: uptime-kuma
|
||||||
restart: always
|
restart: always
|
||||||
ports:
|
ports:
|
||||||
|
|||||||
53
zigbee2mqtt/configuration.yaml
Normal file
53
zigbee2mqtt/configuration.yaml
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
version: 5
|
||||||
|
mqtt:
|
||||||
|
base_topic: zigbee2mqtt
|
||||||
|
server: mqtt:192.168.1.16:1883
|
||||||
|
user: ha
|
||||||
|
password: hairybeard
|
||||||
|
serial:
|
||||||
|
port: /dev/ttyACM0
|
||||||
|
adapter: zstack
|
||||||
|
availability:
|
||||||
|
enabled: true
|
||||||
|
active:
|
||||||
|
timeout: 10
|
||||||
|
max_jitter: 30000
|
||||||
|
backoff: true
|
||||||
|
pause_on_backoff_gt: 0
|
||||||
|
passive:
|
||||||
|
timeout: 1500
|
||||||
|
advanced:
|
||||||
|
channel: 20
|
||||||
|
network_key:
|
||||||
|
- 215
|
||||||
|
- 79
|
||||||
|
- 197
|
||||||
|
- 172
|
||||||
|
- 254
|
||||||
|
- 150
|
||||||
|
- 68
|
||||||
|
- 178
|
||||||
|
- 159
|
||||||
|
- 8
|
||||||
|
- 168
|
||||||
|
- 170
|
||||||
|
- 239
|
||||||
|
- 36
|
||||||
|
- 43
|
||||||
|
- 72
|
||||||
|
pan_id: 51994
|
||||||
|
ext_pan_id:
|
||||||
|
- 38
|
||||||
|
- 163
|
||||||
|
- 233
|
||||||
|
- 182
|
||||||
|
- 156
|
||||||
|
- 13
|
||||||
|
- 171
|
||||||
|
- 191
|
||||||
|
last_seen: disable
|
||||||
|
frontend:
|
||||||
|
enabled: true
|
||||||
|
port: 8080
|
||||||
|
homeassistant:
|
||||||
|
enabled: true
|
||||||
Reference in New Issue
Block a user