No Description

dependabot[bot] 44b4912123 build(deps): bump docker/setup-buildx-action from 3.2.0 to 3.3.0 (#62) 3 days ago
.github 44b4912123 build(deps): bump docker/setup-buildx-action from 3.2.0 to 3.3.0 (#62) 3 days ago
CHANGELOG.md af2e6dbb89 release v2.1.0 2 years ago
Dockerfile b5fba7caca build(deps): bump alpine from 20240315 to 20240329 (#61) 1 week ago
Makefile 3a6020a728 added makefile to facilitate building, tagging & pushing container images 3 years ago
README.md 3db6b8f2a8 retry $RETRIES times before reporting "offline" state 2 years ago
docker-compose.yml 3db6b8f2a8 retry $RETRIES times before reporting "offline" state 2 years ago
monitor.sh 3db6b8f2a8 retry $RETRIES times before reporting "offline" state 2 years ago

README.md

docker: status report for .onion services ✉️ 🐳

send email via dma when tor .onion service goes online or offline

repo: https://github.com/fphammerle/docker-onion-service-status-mail

docker hub: https://hub.docker.com/r/fphammerle/onion-service-status-mail

signed image tags: https://github.com/fphammerle/docker-onion-service-status-mail/tags

$ sudo docker network create tor
$ sudo docker run -d --network tor \
    --name tor_proxy \
    fphammerle/tor-proxy
$ sudo docker run -d --network tor \
    -e TOR_HOST=tor_proxy -e TOR_PORT=9050 \
    -e ONION_SERVICE_HOST=change-me.onion \
    -e ONION_SERVICE_PORT=80 \
    -e RETRIES=2 \
    -e MAIL_TO=me@example.com,someone@else.com \
    --name onion_service_monitor  \
    fphammerle/onion-service-status-mail

docker-compose 🐙

  1. git clone https://github.com/fphammerle/docker-onion-service-status-mail
  2. edit docker-compose.yml
  3. docker-compose up --build