From 2fd916df1aad1ec7c96ad01a5a8cb88152b08ef6 Mon Sep 17 00:00:00 2001 From: Pratham Patel Date: Fri, 2 Dec 2022 16:01:12 +0530 Subject: [PATCH] gotify init --- Caddyfile | 6 ++++++ master-compose.yml | 22 +++++++++++++++++++--- 2 files changed, 25 insertions(+), 3 deletions(-) diff --git a/Caddyfile b/Caddyfile index e5285f3..cdf8d8b 100644 --- a/Caddyfile +++ b/Caddyfile @@ -118,6 +118,12 @@ cockpit.thefossguy.com { } +notify.thefossguy.com { + tls /etc/ssl/certs/certificate.pem /etc/ssl/private/key.pem + reverse_proxy gotify-akashvani:80 +} + + torr.thefossguy.com { tls /etc/ssl/certs/certificate.pem /etc/ssl/private/key.pem basicauth { diff --git a/master-compose.yml b/master-compose.yml index 8684125..595a4c7 100644 --- a/master-compose.yml +++ b/master-compose.yml @@ -27,6 +27,7 @@ services: - thefossguy-blog - nextcloud-web - thefossguy-mach + - gotify-server - transmission-raadhe @@ -185,14 +186,29 @@ services: - TZ=Asia/Kolkata + gotify-server: + image: docker.io/gotify/server-arm64:latest + container_name: gotify-akashvani + restart: always + ports: + - "8050:80" + volumes: + - /trayimurti/containers/volumes/gotify:/app/data:Z + labels: + - io.containers.autoupdate=registry + - pratham.container.category=gotify + environment: + - TZ=Asia/Kolkata + + transmission-web: image: lscr.io/linuxserver/transmission:latest container_name: transmission-raadhe restart: always ports: - - "8050:9091" # transmission web-ui - - "8051:51413" # torrent port TCP - - "8052:51413/udp" # torrent port UDP + - "8060:9091" # transmission web-ui + - "8061:51413" # torrent port TCP + - "8062:51413/udp" # torrent port UDP volumes: - /trayimurti/torrents/downloads:/downloads:Z - /trayimurti/torrents/config:/config:Z