No Description

dependabot[bot] 2b9b7a3f41 build(deps): bump docker/build-push-action from 4.1.1 to 4.2.0 (#50) 8 months ago
.github 2b9b7a3f41 build(deps): bump docker/build-push-action from 4.1.1 to 4.2.0 (#50) 8 months ago
CHANGELOG.md af2e6dbb89 release v2.1.0 2 years ago
Dockerfile b7047720c2 upgrade dma package from v0.13-r3 to v0.13-r4 (maintainership claimed) 8 months 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