add minio to truenas
This commit is contained in:
parent
8ab3783a2b
commit
c090cc9cbe
@ -22,6 +22,7 @@ networks:
|
||||
name: apps
|
||||
|
||||
services:
|
||||
|
||||
adguard:
|
||||
container_name: adguard
|
||||
image: adguard/adguardhome
|
||||
@ -40,6 +41,7 @@ services:
|
||||
- /mnt/hdd/apps/adguard/conf:/opt/adguardhome/conf
|
||||
- /mnt/hdd/apps/certbot/etc:/etc/letsencrypt
|
||||
- /mnt/hdd/apps/certbot/var:/var/lib/letsencrypt
|
||||
|
||||
certbot:
|
||||
container_name: certbot
|
||||
image: certbot/dns-cloudflare
|
||||
@ -65,8 +67,25 @@ services:
|
||||
- /mnt/hdd/apps/certbot/etc:/etc/letsencrypt
|
||||
- /mnt/hdd/apps/certbot/var:/var/lib/letsencrypt
|
||||
|
||||
# Certbot
|
||||
|
||||
# Adguard
|
||||
|
||||
# Minio
|
||||
minio:
|
||||
container_name: minio
|
||||
image: minio/minio
|
||||
hostname: s3.balsillie.house
|
||||
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
|
Loading…
Reference in New Issue
Block a user