diff --git a/compose/truenas-apps.yaml b/compose/truenas-apps.yaml index 97fb0fa..0ac40ad 100644 --- a/compose/truenas-apps.yaml +++ b/compose/truenas-apps.yaml @@ -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 \ No newline at end of file + 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 \ No newline at end of file