1
0

add minio to truenas

This commit is contained in:
= 2024-12-25 01:04:30 -05:00
parent 8ab3783a2b
commit c090cc9cbe

View File

@ -22,6 +22,7 @@ networks:
name: apps name: apps
services: services:
adguard: adguard:
container_name: adguard container_name: adguard
image: adguard/adguardhome image: adguard/adguardhome
@ -40,6 +41,7 @@ services:
- /mnt/hdd/apps/adguard/conf:/opt/adguardhome/conf - /mnt/hdd/apps/adguard/conf:/opt/adguardhome/conf
- /mnt/hdd/apps/certbot/etc:/etc/letsencrypt - /mnt/hdd/apps/certbot/etc:/etc/letsencrypt
- /mnt/hdd/apps/certbot/var:/var/lib/letsencrypt - /mnt/hdd/apps/certbot/var:/var/lib/letsencrypt
certbot: certbot:
container_name: certbot container_name: certbot
image: certbot/dns-cloudflare image: certbot/dns-cloudflare
@ -65,8 +67,25 @@ services:
- /mnt/hdd/apps/certbot/etc:/etc/letsencrypt - /mnt/hdd/apps/certbot/etc:/etc/letsencrypt
- /mnt/hdd/apps/certbot/var:/var/lib/letsencrypt - /mnt/hdd/apps/certbot/var:/var/lib/letsencrypt
# Certbot minio:
container_name: minio
# Adguard image: minio/minio
hostname: s3.balsillie.house
# Minio restart: unless-stopped
command:
- "server"
- "--address"
- "s3.balsillie.house:9000"
- "--console-address"
- "s3.balsillie.house:443"
- "--certs-dir"
- "/etc/letsencrypt/live/adguard.balsillie.house"
- "/data"
networks:
apps:
ipv4_address: 10.96.10.12
link_local_ips: []
volumes:
- /mnt/hdd/s3:/data
- /mnt/hdd/apps/certbot/etc:/etc/letsencrypt
- /mnt/hdd/apps/certbot/var:/var/lib/letsencrypt