Compare commits

..

10 Commits

Author SHA1 Message Date
5b58ef7bfa Update uptime-kuma/docker-compose.yml
Change version in line with developers'recomendation
2026-03-06 21:10:40 +00:00
67b118f582 Update collabora/docker-compose.yml
Additional parameters to deal with communication between CADDY and COLLABORA
2026-02-28 15:30:04 +00:00
2b6bb091a6 Update diun/docker-compose.yml
add restart option
2026-01-31 10:47:23 +00:00
063e2bc7ea Add duplicati/docker-compose.yml 2026-01-28 13:19:25 +00:00
6777d99ee8 Add iperf3/docker-compose.yml 2026-01-28 11:36:10 +00:00
1b62ce51ac Update samba/docker-compose.yml 2026-01-26 01:46:02 +00:00
0b60368774 Update samba/docker-compose.yml 2026-01-25 23:30:12 +00:00
4bb7ff02ad Update samba/docker-compose.yml 2026-01-25 23:12:22 +00:00
07d84b69d5 Add samba/docker-compose.yml
Create SMB share for Time Machine Backup area on DELTA
2026-01-25 23:03:48 +00:00
45661ca9dd Add uptime-kuma/docker-compose.yml 2026-01-25 17:49:35 +00:00
6 changed files with 61 additions and 1 deletions

View File

@@ -10,7 +10,9 @@ services:
- CAP_MKNOD - CAP_MKNOD
restart: unless-stopped restart: unless-stopped
environment: environment:
- extra_params=-o:ssl.enable=true # key parameter # - aliasgroup1=https://code.johnsnexus.click # alternative to domain parameter, allows more than one to access COLLABORA
- DONT_GEN_SSL_CERT=1 # this and next line tell COLLABORA not to deal with SSL as CADDY is doing this
- extra_params=--o:ssl.enable=false --o:ssl.termination=true
- domain=mycloud.johnsnexus.click - domain=mycloud.johnsnexus.click
- TZ=Europe/London - TZ=Europe/London
- password=Zephie2023 - password=Zephie2023

View File

@@ -2,6 +2,7 @@ services:
diun: diun:
image: crazymax/diun:latest image: crazymax/diun:latest
container_name: diun container_name: diun
restart: unless-stopped
command: serve command: serve
volumes: volumes:
- "/data/docker/diun/delta/data:/data" - "/data/docker/diun/delta/data:/data"

View File

@@ -0,0 +1,20 @@
services:
duplicati:
image: lscr.io/linuxserver/duplicati:2.2.0
container_name: duplicati
environment:
- PUID=0
- PGID=0
- TZ=Europe/London
- CLI_ARGS= #optional
- DUPLICATI__WEBSERVICE_INTERFACE=any
- DUPLICATI__DISABLE_DB_ENCRYPTION=false
- SETTINGS_ENCRYPTION_KEY="HOLLYHOCKHOUSE"
- DUPLICATI__WEBSERVICE_PASSWORD=changeme
volumes:
- /data/docker/duplicati/config:/config #
- /data/docker/duplicati/backups:/backups #
- /:/source
ports:
- 8200:8200
restart: unless-stopped

10
iperf3/docker-compose.yml Normal file
View File

@@ -0,0 +1,10 @@
version: '3.9'
services:
iperf3:
image: mlabbe/iperf3
ports:
- '5201:5201/udp'
- '5201:5201/tcp'
restart: unless-stopped
container_name: iperf3

16
samba/docker-compose.yml Normal file
View File

@@ -0,0 +1,16 @@
services:
samba:
image: dockurr/samba
container_name: samba
environment:
NAME: "TimeMachineDelta" # this is the share name ...
USER: "john"
PASS: "mary1948"
UID: "1000"
GID: "1000"
ports:
- 445:445
volumes:
- /media/disk/afpbackup:/storage # ... which is mapped to "storage"
restart: always

View File

@@ -0,0 +1,11 @@
services:
uptime-kuma:
image: louislam/uptime-kuma:2
container_name: uptime-kuma
restart: always
ports:
- "3010:3001"
volumes:
- /data/docker/uptime-kuma/delta:/app/data
- /var/run/docker.sock:/var/run/docker.sock